积木模型的python代码
时间: 2024-08-12 14:10:34 浏览: 73
十四届蓝桥杯国赛Python真题卷
在Python中,积木模型通常指的是使用模块化和类的设计思想来构建复杂系统的方法,这种方法将代码分解成可复用的组件,类似于乐高积木。下面是一个简单的积木模型的例子,使用类来表示积木块:
```python
class Block:
def __init__(self, color, shape):
self.color = color
self.shape = shape
def display(self):
print(f"Block with color: {self.color} and shape: {self.shape}")
# 创建不同类型的积木块实例
red_cube = Block("Red", "Cube")
blue_cylinder = Block("Blue", "Cylinder")
# 调用方法展示积木信息
red_cube.display() # 输出: Block with color: Red and shape: Cube
blue_cylinder.display() # 输出: Block with color: Blue and shape: Cylinder
阅读全文