Fundamentals Flashcards

1
Q

what is an int

A

int stands for integer. any whole number positive or negative without decimals. Ex 7, -20000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is a float

A

floating number positive or number , meaning number with decimal point. Ex 3.0, .4

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is str

A

sequence of characters between “” or ‘’ Ex ‘2’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is a bool

A

either True or False (cap)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is the None data type

A

signifies nothing or a placeholder, only value is None

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what does the print function do

A

prints something to the console. print()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what does the type function is

A

tells you what type an object is

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

print to the console hello world to the console

A

print(“hello world”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how do you write single line Comments

A

anything on the right of # is a comment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How to write multi-line comments

A

””” triple quotation mark. can use single or double
“””
ggrgrgr
“””
or “"”hgrugr
hgrgrgr”””

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

put double space between code and comment on a single line if on same line

A

print (x) #prints x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

why use comment

A

do not use comments for obvious, should facilitate the understanding of code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is a variable and how to create one in python

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is an argument.

A

value inside a function print(argument) function takes something to screen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is the syntax of print function

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly