码迷,mamicode.com
首页 > 编程语言 > 详细

python之---警匪游戏

时间:2018-09-09 20:05:44      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:code   ini   one   int   The   cti   name   splay   gif   

警匪游戏

技术分享图片
class Base(object):
    def __init__(self,name,gender,life_value,weapon):
        self.name=name
        self.gun=gender
        self.life_value=life_value
        self.waepon=weapon


class police(Base):
    def intruduction(self):
        sp=我是警察,我叫%s %(self.name)
        print(sp)
    def attck(self,other):
        if isinstance(other,police):
            print(警察自己人,别打。)
            return
        print(警察%s要打匪徒%s % (self.name,other.name))
        self.life_value -= 0
        other.life_value -= 100
        print(匪徒的生命值现在为:%s % (other.life_value))



class terrorist(Base):
    def intruduction(self):
        sp=我是匪徒,我叫%s %(self.name)
        print(sp)
    def attck(self,other):
        if isinstance(other,terrorist):
            print(匪徒自己人,别打。)
            return
        print(匪徒%s要打警察%s % (self.name,other.name))
        self.life_value -= 0
        other.life_value -= 100
        print(警察的生命值现在为:%s % (other.life_value))

p1=police(刘德华,,1000,)
p2=police(吴彦祖,,1000,)
t1=terrorist(葛优,,1000,)
t2=terrorist(张三,,1000,)


p1.attck(p1)
p1.attck(t1)
p2.attck(t1)
p1.attck(t1)
p2.attck(t1)
t1.attck(t1)
警匪游戏

 

python之---警匪游戏

标签:code   ini   one   int   The   cti   name   splay   gif   

原文地址:https://www.cnblogs.com/zhuhaofeng/p/9614381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!