1 Star 0 Fork 0

Python程序设计/20194312 蔡永健

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
车类.py 849 Bytes
一键复制 编辑 原始数据 按行查看 历史
Qze20194312蔡永健 提交于 2020-04-08 22:13 . 车类
'''
车类
姓名:蔡永健
学号:20194312
'''
class toycar:
def __init__(self,material,price):
toycar.material = material
toycar.price = price
def _description(self):
if toycar.price > 200:
print("高档车型\n"+"主要架构由"+toycar.material+"材料打造,畅快无阻")
else:
print("中低档车型\n"+"主要架构由"+toycar.material+"材料打造")
class benz(toycar):
price = 260
material = 'mixsteel'
def __init__(self):
print("奔驰,benz")
print("!royal enjoyment!")
class toyota(toycar):
price = 135
material = "plastic"
def __init__(self):
print("广汽toyota")
print("经济舒适,自由奔放")
pattern1 = toyota()
print("\n奔驰:"+benz.material,benz.price)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/python_programming/cyj20194312__cai_yongjian.git
[email protected]:python_programming/cyj20194312__cai_yongjian.git
python_programming
cyj20194312__cai_yongjian
20194312 蔡永健
master

搜索帮助