python_casting_int.py:
x
 
x = int(1)
y = int(2.5)
z = int("3")
print(x)
print(y)
print(z)