Created
August 24, 2015 17:36
-
-
Save michael1011/b253f66a69c38b055151 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# definierte Variablen | |
guess = 0 | |
secret = 15 #<--- diese Zahl veränden um die Geheimzahl zu ändern | |
i = 0 | |
# Wilkommensnachricht | |
print("Wilkommen zu meinem Ratespiel (bitte nur Zahlen eingeben)") | |
print("Eine Zahl zwischen 0 und 20 wird gesucht:") | |
print("") | |
# Schleife | |
while guess != secret: | |
guess = int(input("Raten Sie: ")) | |
if guess < 0: | |
print("Es sind keine Negativen Zahlen erlaubt") | |
print("") | |
i = i + 1 | |
elif guess < secret: | |
print("Zu klein") | |
print("") | |
i = i + 1 | |
if guess > 20: | |
print("Es sind nur Zahlen die kleiner als 21 sind erlaubt") | |
print("") | |
i = i + 1 | |
elif guess > secret: | |
print("Zu groß") | |
print("") | |
i = i + 1 | |
# Lösung | |
if guess == secret: | |
print("") | |
print("Richtig!") | |
i = i + 1 | |
if i == 1: | |
print("Wow! Sie haben es beim ersten Versuch geschafft. Sie haben wirklich Glück! :D") | |
if i != 1: | |
print("Sie haben es beim", i, "-ten Versuch geschafft.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment