這是我的代碼;Python循環和計數器
mood = 0
if mood == 5:
mood = 4
# I don't want the mood going over four
這是情緒如何增加;
moode = raw_input("how are you").lower()
if 'bad' in moode:
mood += 1
print ('You have said that %s times today')%(mood)
的問題是,如果你說5次,她回答說「你說,這5次」,但我不想心情去四個多?
'mood'和'moode'?我希望這些名字只是一個(不好)的例子,你不用真正的代碼。 – Matthias
他們是一個不好的例子 – user3742457