我正在尝试创建一个脚本,该脚本将获取主机名和IP地址,并将它们写入一个列表中,我可以将它们压缩到一个单独的字典中。这是有效的,除了我在变量中没有任何数字之外,我只得到了"部分而不是数字。不太确定我做错了什么,因为这以前从未发生在我身上。。。看看:
HOST_NAME = []
IP_ADDRESS = []
ADDITION_NAME = "Please enter a word or two explaining the addition (used for file name): "
ENTRY_AMOUNT = int(input("How many hosts will need records? "))
for number in range(ENTRY_AMOUNT):
hostname = raw_input("What is the hostname of the host: ")
address = raw_input("What is the IP address of the host: ")
HOST_NAME.append(hostname)
IP_ADDRESS.append(IP_ADDRESS)
A_RECORD_ENTRY = dict(zip(HOST_NAME,IP_ADDRESS))
print HOST_NAME # test for correct appendages
print IP_ADDRESS # test for correct appendages
print A_RECORD_ENTRY # testing code for dictionary output
这给我的输出是:
C:Usersfallacy>a_record_add.py
How many hosts will need records? 1
What is the hostname of the host: test
What is the IP address of the host: 192.168.1.1
['test']
[[...]]
{'test': [[...]]}
它只是添加了一些点,正如我以前从未遇到过的那样,所以请让我知道我做错了什么!非常感谢!
IP_ADDRESS.append(IP_ADDRESS)
我想你是想写:
IP_ADDRESS.append(address)