diff --git a/cost-of-smokes.py b/cost-of-smokes.py index 0e09983..10c92a6 100644 --- a/cost-of-smokes.py +++ b/cost-of-smokes.py @@ -12,12 +12,14 @@ while True: cost = float(input("How much does a pack cost? ")) except ValueError: print("Please only type numbers") + input("Press 'enter' to continue: ") continue try: packs = float(input("How many packs do you smoke a day? ")) except ValueError: print("Please only type numbers") + input("Press 'enter' to continue: ") continue break