Computer Science, asked by ASweety1431, 10 months ago

find element index position in tuple without using index function ???

Do fast! ​

Answers

Answered by DMani3
2

vowels=('a','e','i','o','u')

index=vowels.index('e')

print('The index of e: ,index)

index=vowels.index('u')

print('The index of u: ,index)

Answered by rafaelnadalbangtan
2

Answer:

vowels=('a','e','i','o','u')

index=vowels.index('e')  

print('The index of e: ,index)

index=vowels.index('u')  

print('The index of u: ,index)

pls mark as brainliest, i beg you

Similar questions