'F' → Fullscreen
Create a new Python program named 1-16-for-loops.
number = int(input("Choose a number: "))count = int(input("List how many multiples of the number? "))
total = number # Tracks the current multiple
for i in range(count): print(total) total = total + number
input("Press enter to continue...")number = int(input("Choose a number: "))count = int(input("List how many multiples of the number? "))
total = number # Tracks the current multiple
for i in range(count): print(total, end=" ") total = total + number
print()input("Press enter to continue...")Verify your program works correctly.
Choose a number: 3 [Enter]List how many multiples of the number? 5 [Enter]3 6 9 12 15Press enter to continue...Answer the following questions before submitting your work.
range(count) actually produce, and what does the loop use it for if i is never printed?for loop need you to write your own counter variable and increment it, the way a while loop does?end=" " change about how print() behaves?Submit the required files to the appropriate dropbox.