9 lines
262 B
Python
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)
|