天天看點

python dict儲存到檔案_将dict寫入txt檔案并将其讀回?

我正試着把字典寫成一個txt檔案。然後用raw_input鍵入鍵來讀取dict值。我覺得我隻是錯過了一步,但我已經找了一段時間了。

我知道這個錯誤File "name.py", line 24, in reading

print whip[name]

TypeError: string indices must be integers, not str

我的代碼:#!/usr/bin/env python

from sys import exit

class Person(object):

def __init__(self):

self.name = ""

self.address = ""

self.phone = ""

self.age = ""

self.whip = {}

def writing(self):

self.whip[p.name] = p.age, p.address, p.phone

target = open('deed.txt', 'a')

target.write(str(self.whip))

print self.whip

def reading(self):

self.whip = open('deed.txt', 'r').read()

name = raw_input("> ")

if name in self.whip:

print self.whip[name]

p = Person()

while True:

print "Type:\n\t*read to read data base\n\t*write to write to data base\n\t*exit to exit"

action = raw_input("\n> ")

if "write" in action:

p.name = raw_input("Name?\n> ")

p.phone = raw_input("Phone Number?\n> ")

p.age = raw_input("Age?\n> ")

p.address = raw_input("Address?\n>")

p.writing()

elif "read" in action:

p.reading()

elif "exit" in action:

exit(0)