gpt4 book ai didi

python - 我收到错误 "Code is unreachable Pylance"这是什么意思,或者我在我的代码中做错了什么?

转载 作者:行者123 更新时间:2023-12-05 02:40:04 24 4
gpt4 key购买 nike

def percent(marks):
return (marks[0]+marks[1]+marks[2]+marks[3]/400)*100

marks1=[54,65,85,54]
percent1=percent(marks1)

marks2=[54,52,65,85]
percent2 = percent(marks2)
print(percent1,percent2)

最佳答案

return 之后的行不会随时执行。所以你可以删除它们,什么都不会改变。消息告诉你这件事,因为有这样的代码是很不寻常的。

我想你想要这个:

def percent(marks):
return (marks[0]+marks[1]+marks[2]+marks[3]/400)*100

marks1 = [54, 65, 85, 54]
percent1 = percent(marks1)

marks2 = [54, 52, 65, 85]
percent2 = percent(marks2)
print(percent1, percent2)

Python 代码中的空格很重要。在您的代码中,所有行都是函数的一部分。在固定代码中,它们不是。

关于python - 我收到错误 "Code is unreachable Pylance"这是什么意思,或者我在我的代码中做错了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68789213/

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