Assign to variable position a tuple of coordinates (1, 5) and then unpack it into variables x and y.
position
x
y
student = { "name": "Alice", "age": 16, "grade": "10th" }
print(student["name"]) # Alice
student["gpa"] = 3.8 print(student)
student["age"] = 17 print(student)
del student["grade"] print(student)
if "name" in student: print("Yes, we have a name!")
type
name
age
color