4 lines
66 B
Python
4 lines
66 B
Python
t = ('John', 'Amaglio', 'Aya')
|
|
t.append('Ano Nîmes')
|
|
print(t[3])
|
t = ('John', 'Amaglio', 'Aya')
|
|
t.append('Ano Nîmes')
|
|
print(t[3])
|