gpt4 book ai didi

python - 如何使用基本操作更改列表中的值?

转载 作者:太空宇宙 更新时间:2023-11-03 12:49:22 25 4
gpt4 key购买 nike

好吧,我给自己设定了挑战,这样我就可以做一些编程了。

但是我遇到了一些问题

adtprice = {19.99 , 49.99}
chldprice = adtprice * (3/4) - 7.5

结果是错误

Traceback (most recent call last):
File "C:/Users/Owner/Desktop/Programming Scripts/park.py", line 2, in <module>
chldprice = adtprice * (3/4) - 7.5
TypeError: unsupported operand type(s) for *: 'set' and 'float'

我希望它简单易用,因为我会经常使用 adtprice 和 chldprice。

最佳答案

adtprice = [19.99 , 49.99]
chldprice = [a * (3.0/4) - 7.5 for a in adtprice]

关于python - 如何使用基本操作更改列表中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16511872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com