[Solved] Write a Python program that repeatedly asks the user to input coin values until the total amount matches a target value
You want to look at a while loop eg: # Set the target value target = 50 # Initialize the running total to 0 total = 0 run the indented code while target != total while total != target: # ask the user for a number choice = input(“Number? “) # add choice to total … Read more