fork download
  1. ayu = [1,2,3,4]
  2.  
  3. print(ayu)
  4. print(type(ayu))
  5.  
Success #stdin #stdout 0.03s 9136KB
stdin
Standard input is empty
stdout
[1, 2, 3, 4]
<class 'list'>