Question: Need Python Code ASAP !!!!!!! Will thumbs up ! both parts plz 6 Points Consider the following incomplete program. name = Guido van Rossum print(name)

6 Points Consider the following incomplete program. name = "Guido van Rossum" print(name) Q3.1 3 Points Fill in the blank with a call to a string method so the program prints: GUIDO VAN ROSSUM Enter your answer here Q3.2 3 Points Fill in the blank with a call to a string method so the program prints: GUIDO VAN ROSSUM Enter your answer here Simplify the following program by rewriting the while loop as a for loop i = 99 while i >= 2: print(i, "bottles of rootbeer") i i - 1 print("1 bottle of rootbeer") print("No more bottle of rootbeer") Insert the appropriate call to the range function to complete the for loop below: for i in print(i, "bottles of rootbeer") print("1 bottle of rootbeer") print("No more bottle of rootbeer") Enter your answer here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
