fork download
  1. a, b, c, d=2, 5.3, "abc", True
  2. print(type(a))
  3. print(type(b))
  4. print(type(c))
  5. print(type(d))
  6. print(a>b)
Success #stdin #stdout 0.01s 7344KB
stdin
Standard input is empty
stdout
<type 'int'>
<type 'float'>
<type 'str'>
<type 'bool'>
False