fork download
  1. mylist = [ 3 ]
  2. print (mylist)
  3.  
  4. print (*mylist)
  5.  
  6.  
Success #stdin #stdout 0.01s 9992KB
stdin
Standard input is empty
stdout
[3]
3