Learn practical skills, build real-world projects, and advance your career
a=3
b=4
print("The Value of a is {one} and the other value is {two}".format(one=a,two=b))
print("the value of a is",a)
a=1
b=1
print(id(a))
print(id(b))
a=[]
a.append(1)
a.append(2)
a
a=[1,2,3,4,5,"sun"]
a