¿Escribir un dictado en un archivo txt y leerlo de nuevo?

Estoy tratando de escribir un diccionario en un archivo de texto. A continuación, lea los valores de dict escribiendo las teclas conraw_input. Siento que solo estoy faltando un paso pero he estado buscando por un tiempo.

Me sale este error

File "name.py", line 24, in reading
    print whip[name]
TypeError: string indices must be integers, not str

Mi código:

#!/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)

Respuestas a la pregunta(6)

Su respuesta a la pregunta