a, b, c, d=2, 5.3, "abc", Trueprint(type(a))print(type(b))print(type(c))print(type(d))print(a>b)
Standard input is empty
<type 'int'> <type 'float'> <type 'str'> <type 'bool'> False
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!