Answers for "#adding for loop with tuple and having space"

0

#adding for loop with tuple and having space

name_of_students = ("Jim" , "yeasin" , "Arafat")
print(name_of_students.index('Arafat'))
#adding for loop with tuple and having space
for x in name_of_students:
    print(x , end=" ")
 #after end statement you give space between the commas to have space
Posted by: Guest on February-24-2022

Code answers related to "#adding for loop with tuple and having space"

Python Answers by Framework

Browse Popular Code Answers by Language