Happy_New_Year.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/usr/bin/env python3
  2. ######################################################################
  3. ## ##
  4. ## Programmname: Happy New Year ##
  5. ## Datum: 09.11.2017 ##
  6. ## Beschreibung: Dieses Programm ist ein Countdown Zähler für das ##
  7. ## neue Jahr. Es zählt beginnend von 10 an runter auf ##
  8. ## 0 und gibt bei 0 ein "Happy New Year" aus. ##
  9. ## ##
  10. ## Autor: Tobias Müller ##
  11. ## ##
  12. ######################################################################
  13. ######################################################################
  14. ########## Importierte Module ##########
  15. ######################################################################
  16. import time
  17. ######################################################################
  18. ########## Definierte Variablen ##########
  19. ######################################################################
  20. finalMessage = "Happy New Year!!!"
  21. countMessage = "Countdown:"
  22. stopCount = 10
  23. startCount = 0
  24. ######################################################################
  25. ########## Hauptprogramm ##########
  26. ######################################################################
  27. # For-Schleife für Countdown
  28. for i in range(startCount, stopCount):
  29. # Zählstatus ausgeben
  30. print(countMessage, stopCount - i)
  31. # 1s warten
  32. time.sleep(1)
  33. # Nachricht ausgeben
  34. print(finalMessage)
  35. # Programmende