0

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

• 在main中是一个循环,询问用户输入“协议”</p>

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

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

• 如果 F 则 main 调用 ADD 提示输入值并将 KV 对添加到 DB。

循环直到用户输入'end'然后打印数据库

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

#!/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) 以显示它正在被调用。现在还修复了该问题,以便在 DB 中不存在键值时调用 ADD(x)。

持续存在的问题:即使我输入,例如“ICMP”作为输入,它只返回键本身,而不是与键关联的值?如何使价值出现?

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

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
4

2 回答 2

2

首先,您正在使用input,这实质上是在评估用户输入。所以让我用一个例子来告诉你:

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

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

你的问题在于TF。您实际上是在检查空字符串是否为空,因此对于任何类型的输入(非空),它只会打印出该值,因为if即使True输入类似于hello world. 更好的方法是这样的:

if user_input in DB

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

第三,当您编写 this 时,您正在遍历字典中的键对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})
于 2013-11-01T11:08:17.413 回答
0

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

我认为你需要的是:

def TF(x):
    return x in DB

所以如果它存在它返回true else 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
>>> 
于 2013-11-01T11:03:46.610 回答