标签:com 字母 面向 image png 框架 首字母 style int
案列:
1 class Chinese: # 类的创建,类名首字母要大写 2 eye = ‘black‘ # 类属性的创建 3 4 def __init__(self,hometown): # 类的初始化方法 5 self.hometown = hometown # 实例属性的创建 6 print(‘程序更新中……‘) # 初始化中的语句 7 8 def born(self): # 实例方法的创建 9 print(‘我生在%s。‘%(self.hometown)) # 方法的具体语句 10 11 xiaofeng = Chinese(‘福建‘) # 类的实例化 12 print(xiaofeng.eye) # 打印实例的属性(从类传递的) 13 xiaofeng.born() # 实例方法的调用
标签:com 字母 面向 image png 框架 首字母 style int
原文地址:https://www.cnblogs.com/Through-Target/p/12117920.html