Answers for "showing typle results with for loop in py"

0

showing typle results with for loop in py

name_of_students = ("Jim" , "yeasin" , "Arafat")
print(name_of_students.index('Arafat'))
#adding for loop with tuple
for x in name_of_students:
    print(x)
Posted by: Guest on February-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language