鱼C论坛

 找回密码
 立即注册
查看: 1791|回复: 7

[已解决]课后作业37讲第0题 求大佬

[复制链接]
发表于 2020-11-10 15:31:10 | 显示全部楼层 |阅读模式
2鱼币


[code]class Judge():
    print("--------游乐园价票系统--------")
    def __index__(self):
        while True:
            try:
                self.days = int(input("请输入今天是星期几(1-7):"))
                days = self.days
                if days in range(1,8):
                    break
                else:
                    print(f"星期{days}有误!")
                    continue
            except (TypeError,ValueError):
                print("输入的内容有误,请重新输入一个数字:")

    def ticket(self):
        while True:
            try:
                self.adults = int(input("请输入需要几张成人票:"))
                self.children= int(input("请输入需要几张儿童票:"))
                adults = self.adults
                children= self.children
                return adults,children
            except (TypeError,ValueError):
                print("输入错误,请重新输入:")

class Charge:
    def __init__(self):
        a = Judge()
        pirce = 100
        adult,child = Judge.ticket()
        aprice = adult * price
        cprice = child * price
        if Judge.days in range(6,8):
            print(f"当前的成人价票为{aprice*1.2},当前儿童价票为{cprice*1.2*0.5},总共票价为{aprice*1.2+cprice*1.2*0.5}")
        else:
            print(f"当前成人价票为{aprice},当前儿童价票为{cprice*0.5},总票价为{aprice+cprice*0.5}")

c = Charge()
最佳答案
2020-11-10 15:31:11
wuyanzulqq 发表于 2020-11-10 18:31
问题一在adult,child = Judge.ticket() 为什么参数随便写都能调用
问题二(那个 def__index__(self)已 ...

问题1,没明白
问题2,没能重现
你的程序有错误,帮你改正了。
class Judge():
    print("--------游乐园价票系统--------")
    def __init__(self):
        while True:
            try:
                self.days = int(input("请输入今天是星期几(1-7):"))
                days = self.days
                if days in range(1,8):
                    break
                else:
                    print(f"星期{days}有误!")
                    continue
            except (TypeError,ValueError):
                print("输入的内容有误,请重新输入一个数字:")

    def ticket(self):
        while True:
            try:
                self.adults = int(input("请输入需要几张成人票:"))
                self.children= int(input("请输入需要几张儿童票:"))
                adults = self.adults
                children= self.children
                return adults,children
            except (TypeError,ValueError):
                print("输入错误,请重新输入:")

class Charge:
    def __init__(self):
        a = Judge()
        price = 100
        adult,child = a.ticket()
        aprice = adult * price
        cprice = child * price
        if a.days in range(6,8):
            print(f"当前的成人价票为{aprice*1.2},当前儿童价票为{cprice*1.2*0.5},总共票价为{aprice*1.2+cprice*1.2*0.5}")
        else:
            print(f"当前成人价票为{aprice},当前儿童价票为{cprice*0.5},总票价为{aprice+cprice*0.5}")

c = Charge()

最佳答案

查看完整内容

问题1,没明白 问题2,没能重现 你的程序有错误,帮你改正了。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-10 15:31:11 | 显示全部楼层    本楼为最佳答案   
wuyanzulqq 发表于 2020-11-10 18:31
问题一在adult,child = Judge.ticket() 为什么参数随便写都能调用
问题二(那个 def__index__(self)已 ...

问题1,没明白
问题2,没能重现
你的程序有错误,帮你改正了。
class Judge():
    print("--------游乐园价票系统--------")
    def __init__(self):
        while True:
            try:
                self.days = int(input("请输入今天是星期几(1-7):"))
                days = self.days
                if days in range(1,8):
                    break
                else:
                    print(f"星期{days}有误!")
                    continue
            except (TypeError,ValueError):
                print("输入的内容有误,请重新输入一个数字:")

    def ticket(self):
        while True:
            try:
                self.adults = int(input("请输入需要几张成人票:"))
                self.children= int(input("请输入需要几张儿童票:"))
                adults = self.adults
                children= self.children
                return adults,children
            except (TypeError,ValueError):
                print("输入错误,请重新输入:")

class Charge:
    def __init__(self):
        a = Judge()
        price = 100
        adult,child = a.ticket()
        aprice = adult * price
        cprice = child * price
        if a.days in range(6,8):
            print(f"当前的成人价票为{aprice*1.2},当前儿童价票为{cprice*1.2*0.5},总共票价为{aprice*1.2+cprice*1.2*0.5}")
        else:
            print(f"当前成人价票为{aprice},当前儿童价票为{cprice*0.5},总票价为{aprice+cprice*0.5}")

c = Charge()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-10 15:46:01 | 显示全部楼层
你的问题是什么?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-10 16:08:27 | 显示全部楼层
没看明白想问什么
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-10 18:31:38 | 显示全部楼层

问题一在adult,child = Judge.ticket() 为什么参数随便写都能调用
问题二(那个 def__index__(self)已改回 __init__)
line 19, in ticket
    self.adults = int(input("请输入需要几张成人票:"))
AttributeError: 'int' object has no attribute 'adults'
为啥会报错啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-10 20:28:53 | 显示全部楼层
class MyClass:
        name = 'FishiC'
        def myFun(self):
                print("Hello,FishiC")

>>> MyClass.myFun("1")
Hello,FishiC
>>> MyClass.myFun("\.")
Hello,FishiC
问题一就是这个意思“为什么参数随便写都能调用。”
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-11-10 20:34:52 | 显示全部楼层


>>>class MyClass:
        name = 'FishiC'
        def myFun(self):
                print("Hello,FishiC")

>>> MyClass.myFun("1")
Hello,FishiC
>>> MyClass.myFun("\.")
Hello,FishiC


问题一就是这个意思“为什么参数随便写都能调用。”
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-10 20:43:09 | 显示全部楼层
wuyanzulqq 发表于 2020-11-10 20:34
>>>class MyClass:
        name = 'FishiC'
        def myFun(self):

这里不能算作普通的参数,self是实例化对象的名字,你直接调用类,而不是实例化对象,所以参数应该是实例化对象的名字。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-11 00:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表