Python Continued Lesson 3 – Modify
Modify the code above so that it matches the code below: x = 0 total = 0 while x != 10: x = int(input(“Enter a number”)) total = x + total print(“Your final total is “, total) Below, explain what the code is doing and how it words line by line.
Python Continued Lesson 3 – Modify Read More »