码迷,mamicode.com
首页 > 其他好文 > 详细

实例变量

时间:2018-12-19 20:54:46      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:birt   print   def   属性   self   python   int   highlight   对象   

class Person:
    def __init__(self, name, id, gender, birth):
        self.name = name # 实例变量  对象里的变量
        self.id = id
        self.gender = gender
        self.birth = birth


p = Person("wusir", "10086", "不详", "1900-12-15")
print(p.birth)
p.birth = "1840-5-6"
print(p.birth)

# 实例变量一般使用    对象.属性

print(p.name)

  

实例变量

标签:birt   print   def   属性   self   python   int   highlight   对象   

原文地址:https://www.cnblogs.com/work14/p/10145404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!