可编辑的地址簿Python

时间:2017-02-21 15:28:10

标签: python addressbook

我需要帮助制作一个可编辑的地址簿python。我需要能够允许用户1)输入新人2)编辑人3)搜索人并显示他们的信息4)列出所有名称到屏幕5)退出程序。有关信息,您希望用户能够输入以下内容:

1)名字 2)姓氏 3)地址 4)城市 5)国家 6)邮编 7)电话号码

唯一必填字段为1和2.用户可以将其他字段留空。

这是我到目前为止的代码

fName = ""
lName = ""
address = ""
city = ""
state = "" 
zipcode = "" 
phone = ""




def Mainmenu(addressbook) :
return(addressbook)

print ("Main Menu")
print ("1 - enter a new person")
print ("2 - edit a person")
print ("3 - search for a person")
print ("4 - list all names")
print ("5 - exit")
input ("enter your selection")



print ("Welcome to my Address Book program")
choice = int ("Mainmenu"())
print("You chose" , choice)

我很喜欢编程,比如5周,我需要帮助。

提前致谢!

0 个答案:

没有答案