5
import pickle
import os
import time

class Person():
    def __init__(self, number, address):
        self.number = number
        self.address = address


def save():
    with open('mydict.pickle', 'wb') as f:
        pickle.dump(mydict, f)        

mydict = {}
mydict['Avi'] = ['347-000-0000', 'Oceanview']
mydict['Alan'] = ['347-000-0000', 'Brighton']
mydict['Frank'] = ['718-000-0000', 'Brighton']

print('add a name to the database.')
name = input('Name:')
number = input('Digits:')
address = input('Address:')
mydict[name] = [number, address]

-------------------------------------------------------

错误:如果我尝试向数据库添加名称,则会收到名称错误。NameError:未定义名称“alan”。奇怪的是字符串不起作用,但数字会。对不起,如果我的问题不清楚。

Traceback (most recent call last):
  File "C:/Python33/ss", line 21, in <module>
    name = input('Name:')
  File "<string>", line 1, in <module>
NameError: name 'alan' is not defined
>>> 
4

1 回答 1

16

It seems like you're using Python 2.x.

Use raw_input instead of input to get string from user.

If you're reading book/material that assume the reader is using Python 3.x, it's better to use Python 3.x instead of Python 2.x.

BTW, dictionary keys are case-sensitive.

>>> d = {'Avi': 1, 'Alan': 2}
>>> d['alan']
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
KeyError: 'alan'
>>> d['Alan']
2
于 2013-11-10T07:45:57.987 回答