我是一個初學者到編程,並選擇Python作爲我的第一語言..
print "start the conversation"
conversation = raw_input()
if conversation == "Hi" or "hi" or "Hello" or "hello":
print "Hey there!"
elif conversation == "How are you?" or "how are you?":
print "I'm good and you?"
else:
print "No one starts a conversation like this."
但是,當我運行程序它工作得很好,我輸入「嗨」它回覆「嘿!」但每當我輸入以下內容作爲輸入「你好嗎?」它仍然會打印出「Hey there!」我希望它能打印出「我很好,你呢?」而不是「嘿!」!再次。請讓我容易,因爲我是初學者。
那麼如何我糾正\ – user1977722
@ user1977722:我在回答解釋它的方式。 – NPE
感謝您的幫助:) – user1977722