Python Tutorials
Python File Handling
Python Modules
There are three numeric types in Python:
int
float
complex
Variability of number types is created when you assign value to them:
x = 1
# int
y = 2.8 # float
z = 1j # complex
To verify the type of any object in Python, use the type () function:
print(type(x))
print(type(y))
print(type(z))
Int, or whole number, is a whole, positive or negative value, without decimals, of infinite length.
Integers
x = 1
y = 35656222554887711
z =
-3255522
print(type(x))
print(type(y))
print(type(z))
Float, or "floating point number" is a number, positive or negative, containing one or more decimals.
Floats
x = 1.10
y = 1.0
z = -35.59
print(type(x))
print(type(y))
print(type(z))
Float can also be scientific numbers with an "e" to indicate the power of 10.
Floats
x = 35e3
y = 12E4
z = -87.7e100
print(type(x))
print(type(y))
print(type(z))
Complex numbers are marked with a "j" as the imaginary component:
Complex
x = 3+5j
y = 5j
z = -5j
print(type(x))
print(type(y))
print(type(z))
You can convert from one form to another in the form of int()
,float()
, and complex()
:
Convert from one type to another:
x = 1 # int
y = 2.8 # float
z = 1j # complex
#convert from int to float:
a = float(x)
#convert from float to int:
b = int(y)
#convert from int to complex:
c = complex(x)
print(a)
print(b)
print(c)
print(type(a))
print(type(b))
print(type(c))
Note: You cannot convert complex numbers to another type of number.
Python does not have a random function () for creating random numbers, but Python has a built-in module called random that can be used to create random numbers:
Import the random()
module, and display a random
number between 1 and 9:
import random
print(random.randrange(1, 10))