Result Size:
625 x 571
demo_ref_tuple_index.py:
thistuple = (1, 3, 7, 8, 7, 5, 4, 6, 8, 5) x = thistuple.index(8) print(x)
x
thistuple
=
(
1
,
3
,
7
,
8
,
7
,
5
,
4
,
6
,
8
,
5
)
x
=
thistuple
.
index
(
8
)
print
(
x
)
C:\Users\My Name>python demo_tuple_index.py
3