Created
April 27, 2020 14:31
-
-
Save BMU-Verlag/ac06efb0bd14dd129e93c327943122ee 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
def __init__(self): | |
self.__Name = input("Wie heißt du?\n") | |
eingabe = input("Willst du das Herz einer Prinzessin oder eines Prinzen erobern?\n") | |
while eingabe != "Prinzessin" and eingabe != "Prinz": | |
eingabe = input ("Gib bitte den Begriff 'Prinzessin' oder den Begriff 'Prinz' ein!\n") | |
self.__Ziel = eingabe | |
self.__Position = 0 | |
self.__Ausstattung = [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment