fork download
  1. # your code goes here
  2.  
  3. # your code goes here
  4.  
  5. L=[0]
  6. for x in range(1,11):
  7. L.append(x*x)
  8. print(L)
  9.  
Success #stdin #stdout 0.1s 14172KB
stdin
Standard input is empty
stdout
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81, 100]