Python 中的字典和循环



>编写一个以名为DB的字典为中心的程序,该字典包含协议名称作为键,并将这些协议的文本描述作为值。没有全局变量。

主要是一个循环,查询用户输入"协议"

• 循环调用 TF 以查看数据库中是否存在协议(密钥)。TF 返回 T 或 F。

• 如果 T 则 main 调用 PT 以打印值并继续。

• 如果为 F,则 main 调用 ADD,提示输入值并将 KV 对添加到数据库中。

循环直到用户输入"结束",然后打印数据库

这是我到目前为止所拥有的:

#!/usr/bin/python3
#contains protocol names as keys, and text descriptions of protocols as values
DB= {'ICMP': 'internet control message protocol', 'RIP':'RIP Description',
     'ipv4':'Internet protocol v4', 'ipv6':'IP version 6'}
def TF(x):
    return x in DB
def PT(x):
    print("The protocol you entered is: " , x)
    return x
def ADD(x):
    usr_input = input("Please enter a value to be added to the DB: ")
    description = input("Please enter description for the key: ")
    DB[usr_input] = description

for i in DB:
    user_input = input("Please enter the protocol: ")
    if (user_input == "end"):
        break
    TF(user_input)
    if (TF(user_input) == True):
        PT(user_input)
    else:
        ADD(user_input)

收到用户输入的提示,但是每当我在提示符下输入"ICMP"之类的操作时,它只会打印出相同的答案并继续无限循环,直到我点击 Control+D。我在这里做错了什么?即使我输入的键不在字典中,它也做同样的事情。请帮忙。谢谢。

编辑

:修复了无限循环问题并编辑了PT(x)以显示它正在被调用。现在还修复了该问题,以便在数据库中不存在键值时立即调用 ADD(x)。

持续存在的问题:即使我输入,例如"ICMP"作为输入,它也只返回键本身,而不是与键关联的值?如何显示值?

其次,现在如果用户输入尚不存在,则会调用 ADD(x),但是,它不会附加到数据库字典并将其打印出来。相反,我得到以下内容:

Please enter the protocol: ICMP
The protocol you entered is:  ICMP
Please enter the protocol: icmp
Please enter a value to be added to the DB: here here
Please enter description for the key: herererere
Traceback (most recent call last):
  File "D:/Sheridan/Part Time/Linux Architecture w. Network Scripting/Week 8 Code/practise_in_class.py", line 24, in <module>
    for i in DB:
RuntimeError: dictionary changed size during iteration

首先,您使用的是input,这本质上是评估用户输入。因此,让我举一个例子来向您展示:

>>> input("?")
?>? 1 + 1
2

请改用raw_input。但是,如果您使用的是 Python3,请继续使用 input

你的问题在于TF.您本质上是在检查空字符串是否为空,因此对于任何类型的输入(不为空),它将简单地打印出值,因为它将if语句的计算结果为 True即使输入类似于 hello world 。更好的方法是这样的:

if user_input in DB

这将检查数据库字典的键中是否user_input

第三,当你写这个for i in DB:时,你正在遍历字典中的键对。你首先为什么要这样做?只需使用 in 关键字即可在字典中搜索键,如上所述。因此,一个正常运行的程序将是这样的:

DB = {'ICMP': 'internet control message protocol', 'RIP': 'RIP Description',
      'ipv4': 'Internet protocol v4', 'ipv6': 'IP version 6'}

if __name__ == '__main__':
    # Running loop
    while True:
        # Taking user input
        user_input = raw_input("Please enter a protocol, press Q to quit")
        # If the input is Q, then we break the loop
        if user_input == 'Q':
            break
        # If the value of user_input is inside DB, then we print it
        if user_input in DB:
            print DB[user_input]
        # Else, we ask the user to add a description, and add it to our dictionary
        else:
            user_value = raw_input("Please enter a value for your new protocol")
            # Adding to dictionary using the update method
            DB.update({user_input: user_value})

这个TF(user_input) == True永远是正确的。 因为DB是一个dictionary,它总是!=""。 它返回 true 并调用打印输入的 PT(user_input)。所以ADD(user_input)永远不会被召唤。

我认为您需要的是:

def TF(x):
    return x in DB

所以如果它存在,它返回 true 否则返回 false 来插入它

>>> DB= {'ICMP': 'internet control message protocol', 'RIP':'RIP Description',
...      'ipv4':'Internet protocol v4', 'ipv6':'IP version 6'}
>>> "ICMP" in DB
True
>>> "ICMP-false" in DB
False
>>> 

相关内容

  • 没有找到相关文章

最新更新