我正在嘗試創建一個簡單的腳本,它會詢問用戶將輸入答案的問題(或者出現可選答案的提示?),程序會根據輸入輸出響應。(初學者Python)依賴用戶輸入創建if/else語句?
例如,如果我說
prompt1=input('Can I make this stupid thing work?')
我會沿着我可能會對此錯誤的方式的
if prompt1='yes':
print('Hooray, I can!')
else prompt1='No':
print('Well I did anyway!')
elif prompt1=#an answer that wouldn't be yes or no
#repeat prompt1
行的東西。請儘可能描述性,因爲這是我的學習練習。提前致謝!
使用'=='比較相等性,並使用'else'語句。 – Christian 2014-11-02 03:14:06