You have already completed these exercises!
Do you want to take them again?
You completed the Python Data Types Exercises from W3Schools.com
Share on:
If x = 5, what is a correct syntax for printing the data type of the variable x?
x = 5
x
print(dtype(x))
print(type(x))
print(x.dtype())