Learn practical skills, build real-world projects, and advance your career
a=2
b=2
print(id(a))
print(id(b))
a=[1,2,3,4]
a.append(5)
a
a

a[0]