Tuples

#Tuples - Immutable (cannot be changed) - ()
coordinates = (40.7128, 74.0060) #New York
red = (255, 0, 0)
green = (0, 255, 0)
blue = (0, 0, 255)
student = ("John Doe", 8675309, "Computer Science")

print(student[1])

Last updated