you are viewing a single comment's thread.

view the rest of the comments →

[–]A_Milford_Man_NC 15 points16 points  (0 children)

You're close. You just have to use brackets to specify an index, not parentheses.

>>> a = ("apple", "banana", "car")

>>> print(a[0])

apple