成语大全网 - 汉语词典 - 三道Python题目求助!

三道Python题目求助!

#第二题:

#没有办法写缩进,看不了下载图片

dictionary?=?{}

while?True:

response?=?str(input("您要查询、添加、删除还是退出字典:?"))

if?response?==?"查询":

search_response?=?str(input("您要查询什么:?"))

if?search_response?in?dictionary:

print(search_response?+?":?"?+?dictionary[search_response])

elif?response?==?"添加":

add_response_name?=?str(input("您要创建新词的名字:?"))

if?add_response_name?in?dictionary:

add_conform?=?str(input("单词已存在!您要更改吗(要/不要):?"))

if?add_conform?==?"要":

add_response_value?=?str(input("您要创建新词的意思:?"))

dictionary[add_response_name]?=?add_response_value

print("新词已创建!")?

else:

pass

add_response_value?=?str(input("您要创建新词的意思:?")

dictionary[add_response_name]?=?add_response_value

print("新词已创建!")

elif?response?==?"删除":

delete_response?=?str(input("您要删除哪个词:?"))

if?delete_response?not?in?dictionary:

print("该词不在词典内!")

else:

del?dictionary[delete_response]

print("该词已删除!")

else:

print("程序已退出!")

break