diff --git a/CountDown Timer_Python/timer.py b/CountDown Timer_Python/timer.py index 10c0299..57ca55c 100644 --- a/CountDown Timer_Python/timer.py +++ b/CountDown Timer_Python/timer.py @@ -11,9 +11,9 @@ def CountDown(t): time.sleep(1) t -= 1 - print("Timer Finished!") + print("Timer Finished!") - time = input("Enter the Duration In Seconds: ") + duration = int(input("Enter the Duration In Seconds: ")) - CountDown(int(t)) \ No newline at end of file + CountDown(int(t))