Run Program ❯
Python Home
❯
Run Code
Change Orientation
x = 10 # x is an integer print(x, type(x)) x = "Hello" # now x is a string print(x, type(x)) x = 3.14 # now x is a float print(x, type(x))