If we execute the following code, a value of which data type will be stored in the variable b?
a = "Tuesday"
b = 10
a = b
b = aIn other words, if we call print(type(b)) after executing the code, which type will be printed?
If we execute the following code, a value of which data type will be stored in the variable b?
a = "Tuesday"
b = 10
a = b
b = aIn other words, if we call print(type(b)) after executing the code, which type will be printed?
Create a free account to access the full topic