Python OOP - practice_3丨【生长吧!Python】

举报
ruochen 发表于 2021/07/04 10:22:40 2021/07/04
【摘要】 Python OOP - practice_3

定义一个门票系统

  • 门票的原价是100元
  • 当周末的时候门票涨价20%
  • 小孩子半票
  • 计算2个成人和1个小孩的平日票价
class Ticket():
    def __init__(self, weekend = False, child = False):
        self.exp = 100
        if weekend:
            self.inc = 1.2
        else:
            self.inc = 1
            
        if child:
            self.discount = 0.5
        else:
            self.discount = 1
        
    def cal_price(self, num):
        return self.exp * self.inc * self.discount * num
    
adult = Ticket()
child = Ticket(child = True)
print("两个成年人和一个小孩子平日的价格是{}".format(adult.cal_price(2) + child.cal_price(1)))

adult = Ticket(weekend = True)
child = Ticket(weekend = True, child = True)
print("两个成年人和一个小孩子周末的价格是{}".format(adult.cal_price(2) + child.cal_price(1)))
两个成年人和一个小孩子平日的价格是250.0
两个成年人和一个小孩子周末的价格是300.0

游戏编程:按以下要求定义一个乌龟类和鱼类并尝试编程

  • 假设游戏场景为范围(x,y)为 0<=x<=10, 0<=y<=10
  • 游戏生成1只乌龟和10条鱼
  • 他们的移动方向均随机
  • 乌龟的最大移动能力是2(乌龟可以随机选择移动是1还是2),鱼的最大移动能力是1
  • 当移动到场景边缘,自动反方向移动
  • 乌龟初始化体力为100(上限)
  • 乌龟每移动一次,体力消耗1
  • 当乌龟和鱼重叠,乌龟吃掉鱼,乌龟体力增加20
  • 鱼不计算体力
  • 当乌龟体力值为0或者鱼的数量为0时,游戏结束
import random as r

class Turtle(object):
    
    def __init__(self):
        self.power = 100
        
        # 初始化乌龟的位置
        self.x = r.randint(0,10)
        self.y = r.randint(0,10)
        
    def move(self):
        new_x = r.choice([1,2,-1,-2]) + self.x
        new_y = r.choice([1,2,-1,-2]) + self.y
        
        # 判断乌龟的移动是否超出了边界
        
        if new_x < 0:
            self.x = 0 - (new_x - 0)       # 反方向
        elif new_x > 10:
            self.x = 10 - (new_x - 10)
        else:
            self.x = new_x
    
        if new_y < 0:
            self.y = 0 - (new_y - 0)
        elif new_y > 10:
            self.y = 10 - (new_y - 10)
        else:
            self.y = new_y
        
        self.power -= 1
        return (self.x, self.y)
    
    def eat(self):
        self.power += 20
        if self.power >= 100:
            self.power = 100
            
class Fish(object):
    
    def __init__(self):
        self.x = r.randint(0,10)
        self.y = r.randint(0,10)
        
    def move(self):
        new_x = self.x + r.choice([1,-1])
        new_y = self.y + r.choice([1,-1])
        
        # 判断鱼的移动是否超出了边界
        
        if new_x < 0:
            self.x = 0 - (new_x - 0)       # 反方向
        elif new_x > 10:
            self.x = 10 - (new_x - 10)
        else:
            self.x = new_x
    
        if new_y < 0:
            self.y = 0 - (new_y - 0)
        elif new_y > 10:
            self.y = 10 - (new_y - 10)
        else:
            self.y = new_y
            
        return (self.x, self.y)
    
turtle = Turtle()
fish = []
for i in range(10):
    new_fish = Fish()
    fish.append(new_fish)
    
while True:
    if not len(fish):
        print("鱼被吃完了,游戏结束")
        break
    if not turtle.power:
        print("乌龟体力被耗尽了,游戏结束")
        break
        
    pos = turtle.move()
    
    # 在迭代中做列表的删除元素是非常危险的,经常会出现一些意想不到的问题,
    # 因为迭代器是直接引用列表元素的数据做的操作,
    # 所以,我们这里把列表拷贝一份传给迭代器,然后再对列表做操作
    for each_fish in fish[:]:
        if each_fish.move() == pos:
            turtle.eat()
            fish.remove(each_fish)      # 移除列表中元素
            print("有一条鱼被吃掉了")
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
有一条鱼被吃掉了
鱼被吃完了,游戏结束

定义一个点(point)和直线(Line)类,使用getLine方法获取两点构成直线的长度

import math

class Point(object):
    def __init__(self, x = 0, y = 0):
        self.x = x
        self.y = y
        
    def get_x(self):
        return self.x
    
    def get_y(self):
        return self.y
    
class Line(object):
    def __init__(self, p1, p2):
        self.x = p1.get_x() - p2.get_x()
        self.y = p1.get_y() - p2.get_y()
        
        self.len = math.sqrt(self.x*self.x + self.y*self.y)
        
    def get_len(self):
        return self.len
    
p1 = Point(2,3)
p2 = Point(5,7)
line = Line(p1, p2)
line.get_len()
5.0

【生长吧!Python】有奖征文火热进行中:https://bbs.huaweicloud.com/blogs/278897

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。