student={'alex':23,'kelvin':35,'mark':40}
print("student :",student)
stud=student
student={}
print("student :",stud)
print("Student : ",student)
student={'alex':23,'kelvin':35,'mark':40}
print("student :",student)
stud=student
student={}
print("student :",stud)
print("Student : ",student)
0 Comments