demo_casting_int.py:
x = int(1) y = int(2.8) z = int("3") print(x) print(y) print(z)
➜ begtut>python demo_casting_int.py
1
2
3