Skip to content

任务5

任务5-1(编写类)

创建一个名为Machine的类,代表机器。

根据需要添加属性和方法,使其行为与以下测试匹配:

python
>>> m = Machine('some_kind_of_machine')
>>> m.start()
'Machine started.'
>>> m.start()
'Machine is already started.'
>>> m.stop()
'Machine stopped.'
>>> m.stop()
'Machine is not started yet.'
>>> m.status
'stop'

任务5-2(继承类)

创建一个名为VendingMachine的类,使其继承上一题的Machine类,代表某种产品的自动售货机。

信息

已存在且行为相同的类,要求不重写

根据需要添加属性和方法,使其行为与以下测试匹配:

python
>>> v = VendingMachine('candy', 10)
>>> v.vend()
'Nothing left to vend. Please restock.'
>>> v.add_funds(15)
'Nothing left to vend. Please restock. Here is your $15.'
>>> v.restock(2)
'Current candy stock: 2'
>>> v.vend()
'Please add $10 more funds.'
>>> v.add_funds(7)
'Current balance: $7'
>>> v.vend()
'Please add $3 more funds.'
>>> v.add_funds(5)
'Current balance: $12'
>>> v.vend()
'Here is your candy and $2 change.'
>>> v.add_funds(10)
'Current balance: $10'
>>> v.vend()
'Here is your candy.'
>>> v.add_funds(15)
'Nothing left to vend. Please restock. Here is your $15.'
>>> w = VendingMachine('soda', 2)
>>> w.restock(3)
'Current soda stock: 3'
>>> w.restock(3)
'Current soda stock: 6'
>>> w.add_funds(2)
'Current balance: $2'
>>> w.vend()
'Here is your soda.'

提示

Python 的格式化字符串或许可以简化代码

一个简单的例子:

python
>>> feeling = 'love'
>>> course = '61A!'
>>> f'I {feeling} {course}'
'I love 61A!'

任务5-3(井字棋)

实现一个简单的井字棋,要求至少有以下功能:

  • 黑白双方放置棋子
  • 打印棋盘
  • 在一方获胜时自动检测并输出

不要求图形界面,在终端里打印就行