Numbers Flashcards

1
Q

Three numeric types in Python:

A
  • int
  • float
  • complex
x = 1 # int
y = 2.8 # float
z = 1j # complex
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Verify the type of any object in Python

A

type( ) function:

print(type(x))
print(type(y))
print(type(z))

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

Int, or integer

A

A whole number, positive or negative, without decimals, of unlimited length.

x = 1
y = 35656222554887711
z = -3255522

print(type(x))
print(type(y))
print(type(z))

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

Float or “floating point number”

A

A number, positive or negative, containing one or more decimals.

x = 1.10
y = 1.0
z = -35.59

print(type(x))
print(type(y))
print(type(z))

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

Float can also be scientific numbers with an:

A

“e” to indicate the power of 10.

x = 35e3
y = 12E4
z = -87.7e100

print(type(x))
print(type(y))
print(type(z))

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

Complex numbers are written with a:

A

“j” as the imaginary part

x = 3+5j
y = 5j
z = -5j

print(type(x))
print(type(y))
print(type(z))

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

Python does not have a random() function to make a random number, but Python has a built-in module called:

A

random that can be used to make random numbers:

Import the random module, and display a random number between 1 and 9:

import random
print(random.randrange(1, 10))

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