Run
# Initialize tuple my_tuple = ('Apple', 20) # Access items in tuple using index print(my_tuple[0]) print(my_tuple[1])
Output