fork download
  1. print 'range(5) is',range(5)
  2. print 'type of range(5) is',type(range(5))
  3. print 'type of type(range(5)) is',type(type(range(5)))
Success #stdin #stdout 0.01s 7220KB
stdin
Standard input is empty
stdout
range(5) is [0, 1, 2, 3, 4]
type of range(5) is <type 'list'>
type of type(range(5)) is <type 'type'>