i fixed the bug in thw quantifier function

master
aglaia 2 years ago
parent 97758a682d
commit 543c15b3ca

@ -30,7 +30,11 @@ verbs = spaceremover(verbs)
gamenames = spaceremover(gamenames)
#new funtion quantifier
def quantifier (words):
amount = random.randint(-5,7)
word = random.choice(words)
word = str(amount) + " " + word
if amount == 1 or amount == -1:
return word
if word[-1] =="y":
word = word[0:-1]
#word = word.replace("y","")
@ -47,5 +51,5 @@ print(" " *10+"How to play " + random.choice(gamenames))
print("~*"*30)
#Then it loops through instructions
for i in range(6):
print(" " *10+"Rule " + str(i+1) + ": "+ random.choice(verbs) + " a " + quantifier (objects))
print(" " *10+"Rule " + str(i+1) + ": "+ random.choice(verbs) + " " + quantifier (objects))

Loading…
Cancel
Save