Hello World Flashcards

1
Q

Means there is something wrong with the way your program is written

A

SyntaxError

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

When the python interpreter sees a word it does not recognize

A

NameError

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

Is a whole number has no decimal point and contains all counting numbers as well as their negative counterparts and the number zero

A

int

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

Is a decimal number, it can be used to represent fractional quantities as well as precise measurements

A

Float

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

**

A

Notation for exponent

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

+

A

Notation for Concatenation

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

The process of combining two strings

A

Concatenation

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

Adds space between the two strings

A

“ “

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

Converts variables that are not strings to strings

A

str()

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

Adds and updates the variable

A

+=

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

The notation for multi-line strings

A

“”” or ‘’’

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

The full string does not end until the next triple quote marks, despite there being more than one string

A

Multi-line strings

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