fork download
  1. # your code goes here
  2.  
  3. ar: list[int] = [1,2,3]
  4. print(ar)
  5. ar.append('Emin')
  6. print(ar)
Success #stdin #stdout 0.13s 14064KB
stdin
Standard input is empty
stdout
[1, 2, 3]
[1, 2, 3, 'Emin']