W3Schools Tryit Editor

PHOTO EMBED

Fri Jan 13 2023 11:18:42 GMT+0000 (Coordinated Universal Time)

Saved by @amos #undefined

#convert from int to float:
x = float(1)
​
#convert from float to int:
y = int(2.8)
​
#convert from int to complex:
z = complex(1)
​
print(x)
print(y)
print(z)
​
print(type(x))
print(type(y))
print(type(z))
​
content_copyCOPY

https://www.w3schools.com/python/trypython.asp?filename