Computer Science, asked by Akankshapriya7210, 1 year ago

Write a python program to check whether an element exists within a tuple

Answers

Answered by swapnil583
0
tuplex = ("w", 3, "r", "e", "s", "o", "u", "r", "c", "e") print("r" in tuplex) print(5 in tuplex)





Similar questions