fork(1) download
  1. print type(1)
  2. print type(-87)
  3. print type(0.34)
  4. print type(3.0)
  5. print type(True)
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
<type 'int'>
<type 'int'>
<type 'float'>
<type 'float'>
<type 'bool'>