Run Program ❯
Python Home
❯
Run Code
Change Orientation
a = 10 # Integer b = 3.14 # Float c = "Hello" # String d = True # Boolean e = [1, 2, 3] # List print(type(a)) # Output:
print(type(b)) # Output:
print(type(c)) # Output:
print(type(d)) # Output:
print(type(e)) # Output: