鱼C论坛

 找回密码
 立即注册
查看: 1930|回复: 5

[已解决]求助大佬

[复制链接]
发表于 2020-9-25 15:26:17 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
class Ticket:
    def __init__(self, weekend = False,child = False):
        self.price =100
        if weekend:
            self.increase = 1.2
        else:
            self.increase = 1
        if child:
            self,discount = 0.5
        else:
            self.discount = 1

    def calcprice(self , num): 
        return self.price * self.increase * self.discount *num


print("请输入成人与儿童的数量!")
num1 = int(input("成人:"))
num2 = int(input("儿童:"))
if input("是否为休息日(YES/NO):").upper() == "YES":
    num3 = 1
else:
    num3 = 0


adult = Ticket(weekend = num3)
child = Ticket(weekend = num3 , child = True)

print("num1%d个大人 + num2%d个小孩平日票价为:%.2f" % (adult.calcPrice(num1) + child.calcPrice(num2)))





大佬们,这个程序的错误在哪儿啊
最佳答案
2020-9-25 15:40:40
多出小错误
第9行,点写成逗号了
第13行,函数名大小写和下面调用的时候写的不一样
第29行,格式化列表内参数以字符串中格式化字符个数不一样
class Ticket:
    def __init__(self, weekend = False,child = False):
        self.price =100
        if weekend:
            self.increase = 1.2
        else:
            self.increase = 1
        if child:
            self.discount = 0.5
        else:
            self.discount = 1

    def calcPrice(self , num): 
        return self.price * self.increase * self.discount *num


print("请输入成人与儿童的数量!")
num1 = int(input("成人:"))
num2 = int(input("儿童:"))
if input("是否为休息日(YES/NO):").upper() == "YES":
    num3 = 1
else:
    num3 = 0


adult = Ticket(weekend = num3)
child = Ticket(weekend = num3 , child = True)

print("%d个大人 + %d个小孩平日票价为:%.2f" % (num1,num2,adult.calcPrice(num1) + child.calcPrice(num2)))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-25 15:36:56 | 显示全部楼层
第九行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-25 15:37:31 | 显示全部楼层
不是逗号,小错误,你改下再试试
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-25 15:40:40 | 显示全部楼层    本楼为最佳答案   
多出小错误
第9行,点写成逗号了
第13行,函数名大小写和下面调用的时候写的不一样
第29行,格式化列表内参数以字符串中格式化字符个数不一样
class Ticket:
    def __init__(self, weekend = False,child = False):
        self.price =100
        if weekend:
            self.increase = 1.2
        else:
            self.increase = 1
        if child:
            self.discount = 0.5
        else:
            self.discount = 1

    def calcPrice(self , num): 
        return self.price * self.increase * self.discount *num


print("请输入成人与儿童的数量!")
num1 = int(input("成人:"))
num2 = int(input("儿童:"))
if input("是否为休息日(YES/NO):").upper() == "YES":
    num3 = 1
else:
    num3 = 0


adult = Ticket(weekend = num3)
child = Ticket(weekend = num3 , child = True)

print("%d个大人 + %d个小孩平日票价为:%.2f" % (num1,num2,adult.calcPrice(num1) + child.calcPrice(num2)))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-25 15:41:57 | 显示全部楼层
还是不行,提示AttributeError: 'Ticket' object has no attribute 'calcPrice'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-9-25 15:46:35 | 显示全部楼层
sunrise085 发表于 2020-9-25 15:40
多出小错误
第9行,点写成逗号了
第13行,函数名大小写和下面调用的时候写的不一样

谢谢大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-11 02:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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