fork download
  1. x = 5
  2. print type((x))
  3. print type((x,))
  4. print len((x,))
Success #stdin #stdout 0.01s 7852KB
stdin
Standard input is empty
stdout
<type 'int'>
<type 'tuple'>
1