Jul-08-2017, 09:01 PM
(This post was last modified: Jul-08-2017, 09:03 PM by ython_skyy.)
I'm trying to make the gender and the class come up
print ("so you are a %s,%s and you are a level 0") %(gender ,_class)
some code:
_class = input("swordsman,bowman,or wizard")
if _class == "swordsman" or _class == "wizard" or _class == "bowman":
print(" valid class")
else:
print("not valid")
gender = input("would you like a female or a male character")
if gender == "female" or gender == "male":
print("""welcome to gyp,the goal of this game is to waste your time so please don't rage quit cause python doesn't save your data.
I hope you like RPGs cause this is one of those.right now the game has five levels and I bet the creator will make more
so get ready and please enjoy...""")
else:
print("say what I understand man!!!")
print("so you are a %s,%s and you are a level 0") % (gender, _class)
print ("so you are a %s,%s and you are a level 0") %(gender ,_class)

some code:
_class = input("swordsman,bowman,or wizard")
if _class == "swordsman" or _class == "wizard" or _class == "bowman":
print(" valid class")
else:
print("not valid")
gender = input("would you like a female or a male character")
if gender == "female" or gender == "male":
print("""welcome to gyp,the goal of this game is to waste your time so please don't rage quit cause python doesn't save your data.
I hope you like RPGs cause this is one of those.right now the game has five levels and I bet the creator will make more
so get ready and please enjoy...""")
else:
print("say what I understand man!!!")
print("so you are a %s,%s and you are a level 0") % (gender, _class)