Akhil Narayanan Nair home

Python - List Alias

================

a = [1, 2, 3]

b = a

b[0] = 5

print(a)

print(b)