Created
April 28, 2020 06:57
-
-
Save BMU-Verlag/e14c88b6f647215405ee8e11938c49b1 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
print("\nHallo {}, schön dass du da bist!\n".format(spieler.getName())) | |
beginn = input("Bist du bereit?\n") | |
if beginn == "ja" or beginn == "Ja" or beginn == "JA": | |
while spieler.getPosition() >= 0: | |
spieler.zug(orteListe) | |
else: | |
print("Das ist schade. Hoffentlich sehen wir uns bald wieder!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment