u1-script-basics Flashcards

1
Q

What happens when you convert a float to an integer in Python?

A

All information after the decimal point is lost (truncated). For example, int(5.356) becomes 5.

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

How can you make long numbers more readable in Python code?

A

You can use underscores (_) between digits to make them more readable, like 123_456_789. The underscores don’t affect the value.

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

What’s the difference between storing large numbers as integers vs floats in Python?

A

Python3 uses variable-length integers which maintain precise values, while floats (even large ones) have limited precision due to their 64-bit representation and may lose accuracy.

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

How do you format a float to show a specific number of decimal places in an f-string?

A

Use the format specifier {variable:.Nf} where N is the number of decimal places. Example: f”{3.14159:.2f}” shows “3.14”

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

How do you format large numbers with comma separators in f-strings?

A

Use the format specifier with a comma: {variable:,d} for integers or {variable:,.Nf} for floats where N is decimal places.

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

What operator gives you the remainder of a division in Python?

A

The modulo operator (%). For example, 17 % 5 equals 2.

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

What operator gives you the floor division (integer division) result in Python?

A

The floor division operator (//). For example, 17 // 5 equals 3.

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

How do you convert user input from the console to a float in Python?

A

Use float(input(“prompt”)). The input() function returns a string which is then converted to float.

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

How do you format a number with leading zeros in an f-string?

A

Use the format specifier {number:0Nd} where N is the total width. Example: f”{42:05d}” shows “00042”

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

How do you format a number with a minimum width in an f-string?

A

Use the format specifier {number:Nd} where N is the minimum width. Example: f”{42:5d}” shows “ 42”

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

What’s the difference between creating two variables with the same value vs assigning one to the other?

A

When you assign one variable to another (b = a), both variables point to the same object. If you then change one variable, the other keeps pointing to the original object.

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

How do you include a variable’s value within a string in Python?

A

Use an f-string with the variable in curly braces: f”text {variable} more text”

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

What’s the difference between integer and float division in Python?

A

Integer division (//) always returns a whole number by rounding down, while float division (/) returns a decimal number with the exact result.

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