Python For Loop Using iterate over the list of String


Python For Loop using the iterate over the list of String

Program
# List of String String = ['Mon', 'Tue', 'Wednes', 'Thurs', 'Fri', 'Satur', 'Sun'] # iterate over the list of String for val in String: print(val+"day")
Input
Output