django遍历对象问题

class Address(models.Model):
    name = models.CharField('姓名', maxlength=20, unique=True)
    telphone = models.CharField('电话', maxlength=20)
===========

address = Address('lee', '100')

1、怎样遍历 address 对象 获的它的所有属性或方法

2、获取Address类或对象的 name = models.CharField('姓名', maxlength=20, unique=True) 中的 '姓名'