11. Tuples - tomaslt99/Python-language-tutorials GitHub Wiki

Code:

coordinatess = [(4, 5), (6, 7)]
print(coordinatess[0])

Output:

(4, 5)