Skip to content

Instantly share code, notes, and snippets.

@Der-Eddy
Created July 28, 2017 21:37
Show Gist options
  • Save Der-Eddy/dad2737e5e57a71383db35792ee5e070 to your computer and use it in GitHub Desktop.
Save Der-Eddy/dad2737e5e57a71383db35792ee5e070 to your computer and use it in GitHub Desktop.
geheimnis = 1337
versuch = 0
zaehler = 0
while versuch != geheimnis:
versuch = int(input("Raten Sie: "))
if versuch < geheimnis:
print("zu klein")
if versuch > geheimnis:
print("zu groß")
zaehler = zaehler + 1
print("Super, Sie haben es in ", zaehler, "Versuchen geschafft!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment