1. 程式人生 > >python之input()、while、title()和upper()

python之input()、while、title()和upper()

問卷調查 blog 小應用 inpu python 應用 reading pytho highlight

代碼舉例:

# 小應用:問卷調查,記錄下調查者名字和回答,詢問是否繼續。
# 運用數據字典、while、input()、title()和upper()。
responses = {}
flag = True
while flag:
    name = input("\n請輸入姓名:")
    answer = input("請輸入你的愛好:")
    responses[name.title()] = answer
    repeat = input("是否繼續:(Y/N)")
    if repeat.upper() == ‘N‘:
        flag = False
print("調查結果:", responses)

  

運行結果:

請輸入姓名:mike
請輸入你的愛好:swim
是否繼續:(Y/N)y

請輸入姓名:tom
請輸入你的愛好:reading
是否繼續:(Y/N)n
調查結果: {‘Mike‘: ‘swim‘, ‘Tom‘: ‘reading‘}

  

python之input()、while、title()和upper()