Menu
×
×
Correct!
Exercise:The following code example would print the data type of x, what data type would that be?
x = 20.5
print(type(x))
float
Not CorrectClick here to try again. Correct!Next ❯x = 20.5 print(type(x)) |