1 Star 2 Fork 1

chenjz70/mygitee

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
class_bear.py 334 Bytes
一键复制 编辑 原始数据 按行查看 历史
DESKTOP-VR22HST\804-113 提交于 2021-11-15 18:58 . first commit
# Class_Bear.py
class Bear:
other_name = '老虎' # 属性
def __init__(self, name = other_name): # 方法
self.name = name
def kill(self): # 方法
print("%s, 是受保护动物, 不能杀..." % self.name)
animal = '狗熊'
bear = Bear() # 将类Bear实例化为对象bear
bear.name = animal
bear.kill()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chenjz70/mygitee.git
[email protected]:chenjz70/mygitee.git
chenjz70
mygitee
mygitee
master

搜索帮助