x = 10
print(type(x))// type int
x = float(x)
print(type(x))// flot type
Younes Derfoufi
my-courses.net
my-courses.net
Python Courses & Exercises with solutions !
x = 10
print(type(x))// type int
x = float(x)
print(type(x))// flot type