Commit 9510726d by BellCodeEditor

auto save

parent f47689a4
Showing with 19 additions and 0 deletions
#类的声明 确定这个类的属性和功能是什么
#1.语法
"""
class 类名:
类的说明文档
类的内容
类名的规范: 要求不能是关键,首字母需需要大写,驼峰命名法,
做到见名知意。
"""
class Hero:
def __init__(self):
self.level = 1
self.hp = 300
self.attack = 20
self.speed = 1
yase = Hero()
print(yase.speed)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment