Code Avengers Python 1 Answers [extra: Quality]
apple banana cherry Loops are used to execute a block of code repeatedly. The for loop iterates over a sequence (such as a list or tuple) and executes the block of code for each item. Exercise 5: Functions Question: What is the output of the following code?
greet("John") The output of the code is Hello, John! . code avengers python 1 answers
def greet(name): print("Hello, " + name + "!") apple banana cherry Loops are used to execute