write a program that asks the user to enter a name and then prints Howdy NAME. Your program should repeat these steps until the user inputs Sage. ["Sam", "Lisa", "Micha", "Dave", "Wyatt", "Emma", "Sage"]
def print_name(list1):
for i in list1:
print('Howdy {}'.format(i))
print_name(["Sam", "Lisa", "Micha", "Dave", "Wyatt", "Emma", "Sage"])
Comments
Leave a comment