2017-01-29 103 views
0

我是比較新的Python和stackoverflow社區,並希望在編寫我的第一個「helloworld文件」時發現的特定問題獲得一些幫助。如何在Python 3中輸入兩個不同輸入的答案?

的問題是,是,我無法找到一個方法來打印從兩個不同的輸入字符串的結果一個答案......

if information == ("Yes" or "yes") : #still trying to figure out how to make the program respond with "Ok" with both the inputs, "Yes" and "yes" 
print('Ok') 
print('Ok') 

任何幫助/答案將大大appreaciated。

回答

-1

試試這個

if information == "Yes" or information == 'yes': 

希望這有助於

0

您可以檢查包括:

if information in ("Yes", "yes"): 
    print('Ok') 

或:

if information.lower() == "yes": 
    print('Ok') 
0
if information == "Yes" or information == "yes": 
    print('Ok') 
    print('Ok') 

if information in ('yes', 'Yes', 'YES'): 
    print('Ok') 
    print('Ok') 

另一種方式是:

if information.lower() == "yes": 
    print('Ok') 
    print('Ok') 

或偷懶的辦法:

if information.lower().startwith("y"): 
    print('Ok') 
    print('Ok') 

希望它按預期工作

相關問題