svystun-taras's picture
created the updated web ui
0fdb130
raw
history blame
No virus
143 Bytes
from random import randint
lst = [1, True, {1: ['a', 'zz'], 'z': 't'}]
def appender(lst):
lst.append('TARAS')
appender(lst)
print(lst)