File size: 143 Bytes
0fdb130
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from random import randint


lst = [1, True, {1: ['a', 'zz'], 'z': 't'}]


def appender(lst):
    lst.append('TARAS')

appender(lst)
print(lst)