programming-examples/python/Tuple/Python program to get the 4th element and 4th element from last of a tuple.py
2019-11-15 12:59:38 +01:00

9 lines
262 B
Python

#Get an item of the tuple
tuplex = ("w", 3, "r", "e", "s", "o", "u", "r", "c", "e")
print(tuplex)
#Get item (4th element)of the tuple by index
item = tuplex[3]
print(item)
#Get item (4th element from last)by index negative
item1 = tuplex[-4]
print(item1)