编程语言
首页 > 编程语言> > python装弹实验

python装弹实验

作者:互联网

class Actor:
    def __init__(self,name):
        self.name = name
        self.HP=100
        self.PP=0
    def install_clip(self,clip,bullet):
        clip.install_bullet(bullet)
class Gun:
    def __init__(self):
        self.clip = None
class Bullet:
    def __init__(self):
        self.damage = 40
class Clip:
    def __init__(self):
        self.bullet_list = []
        self.capacity = 100
    def install_bullet(self,bullet):
        if len(self.bullet_list)<self.capacity:
            self.bullet_list.append(bullet)
            print("当前子弹容量{}/{}".format(len(self.bullet_list),self.capacity))
        else:
            print("弹夹已满,装弹失败")

actor = Actor("沐知轩")
gun = Gun()
clip =Clip()
while True:
    bullet = Bullet()
    actor.install_clip(clip,bullet)
    if len(clip.bullet_list)>19:
        break

输出结果
在这里插入图片描述

标签:__,clip,bullet,python,self,init,实验,装弹,def
来源: https://blog.csdn.net/m0_53376856/article/details/112385068