鱼C论坛

 找回密码
 立即注册
查看: 1944|回复: 9

[已解决]为什么for循环里不能有else呀

[复制链接]
发表于 2023-10-4 15:32:51 | 显示全部楼层 |阅读模式

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

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

x
为什么呢这个else是有错误的
realprofit=int(input('请输入月利润:'))
standardprofit=[0,100000,200000,400000,600000,1000000]
pushmoney=[0.1,0.075,0.05,0.03,0.015,0.01]
sum=0
for i in range(0,6):
    if realprofit > standardprofit[i]:
        realpushmoney=(realprofit-standardprofit[i])*pushmoney[i]+realpushmoney
    sum=100000*0.1+realpushmoney

    else:
最佳答案
2023-10-4 17:32:37
本帖最后由 hellomyprogram 于 2023-10-4 17:38 编辑

这个 else 既不与 if 相接(中间有一行缩进少了),也不与 for 相连( else 缩进少了),因此报出了 SyntaxError 。
如果你的 else 是跟着 if 的(更应该是这种),就改成这样:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
for i in range(0, 6):
    if realprofit > standardprofit:
        realpushmoney += (realprofit - standardprofit) * pushmoney
        sum = 100000 * 0.1 + realpushmoney

    else:
        ...
如果你的 else 是跟着 for 的,就这么改:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
for i in range(0, 6):
    if realprofit > standardprofit:
        realpushmoney += (realprofit - standardprofit) * pushmoney
    sum = 100000 * 0.1 + realpushmoney

else:
    ...
另外,我认为你可能想把 realpushmoney 算出来之后无论如何都要计算 sum 的值,这种情况下可能需要改成:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
for i in range(0, 6):
    if realprofit > standardprofit:
        realpushmoney += (realprofit - standardprofit) * pushmoney
    sum = 100000 * 0.1 + realpushmoney

    if realprofit <= standardprofit:
        ...
我假设你在这段代码之前初始化了 realpushmoney (你有可能忘记了初始化),并在 else 后面还写了更多内容。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2023-10-4 15:33:01 | 显示全部楼层
for循环并不限制有else语句,但是在这个具体的代码中,else语句的位置是错误的。因为在这个for循环中,if语句的条件是"realprofit > standardprofit",如果这个条件不成立,那么就会执行else语句。但是在else语句中,并没有指定具体的条件,这会导致程序出错。正确的做法应该是将else语句放在if语句的外面,表示当for循环结束后,如果realprofit小于等于standardprofit的任何一个值,都会执行else语句中的代码。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 15:33:43 | 显示全部楼层
在您的代码中,else 存在错误,因为它没有与任何 if 语句配对。在 Python 中,else 语句必须与一个 if 语句配对。在您的代码中,else 语句与 for 循环一起使用,这是不正确的。您需要将 else 语句与一个 if 语句配对,以便在条件不满足时执行相应的代码。

以下是修复后的代码:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
realpushmoney = 0

for i in range(0, 6):
    if realprofit > standardprofit[ i]:
        realpushmoney = (realprofit - standardprofit[ i]) * pushmoney[ i] + realpushmoney
    else:
        break

sum = 100000 * 0.1 + realpushmoney
print("总奖金:", sum)

在这个修复后的代码中,我将 else 语句与 if 语句配对,并在条件不满足时使用 break 语句跳出循环。这样,当 realprofit 大于 standardprofit[ i] 时,将计算 realpushmoney,否则将跳出循环。
如果问题已经解决,请设置最佳答案
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 15:33:44 | 显示全部楼层
问题:为什么 for 循环里不能有 else?

在 Python 中,for 循环可以与 else 配合使用。但是,else 子句应该与 for 语句对齐,而不是与 if 语句对齐。当 for 循环正常结束(没有被 break 语句中断)时,else 子句会被执行。

根据您提供的代码,问题出在 else 子句的缩进。以下是修改后的代码:
realprofit = int(input('请输入月利润:'))standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]sum = 0realpushmoney = 0for i in range(0, 6):    if realprofit > standardprofit[i]:        realpushmoney = (realprofit - standardprofit[i]) * pushmoney[i] + realpushmoney        sum = 100000 * 0.1 + realpushmoney    else:        breakprint("总奖金:", sum)
在这个修改后的代码中,else 子句与 for 语句对齐,当 for 循环正常结束时,else 子句会被执行。如果 realprofit 大于 standardprofit[i],则计算 realpushmoneysum。如果不满足条件,else 子句会执行 break 语句,提前结束循环。最后,打印出总奖金。

球一个最佳答案谢谢啦!这对我非常重要!
本段回答来自Chat GPT-4,如有错误,多多包涵!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-10-4 15:35:47 | 显示全部楼层
isdkz 发表于 2023-10-4 15:33
for循环并不限制有else语句,但是在这个具体的代码中,else语句的位置是错误的。因为在这个for循环中,if语 ...

那如果else中有具体条件为什么会错呢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 16:02:02 | 显示全部楼层
因为else后面没有代码,这是不行滴
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 16:10:35 From FishC Mobile | 显示全部楼层
Gigi233 发表于 2023-10-4 15:35
那如果else中有具体条件为什么会错呢

else缺语句
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 16:22:26 | 显示全部楼层
else要配if呀。  你写的语句,if后面没有跟else 。 sum=100000*0.1+realpushmoney 已经新起一段落,if已经结束
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 16:42:46 | 显示全部楼层
琅琊王朝 发表于 2023-10-4 16:02
因为else后面没有代码,这是不行滴

并且else上面还有一句(还不与for循环同一缩进)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-10-4 17:32:37 | 显示全部楼层    本楼为最佳答案   
本帖最后由 hellomyprogram 于 2023-10-4 17:38 编辑

这个 else 既不与 if 相接(中间有一行缩进少了),也不与 for 相连( else 缩进少了),因此报出了 SyntaxError 。
如果你的 else 是跟着 if 的(更应该是这种),就改成这样:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
for i in range(0, 6):
    if realprofit > standardprofit:
        realpushmoney += (realprofit - standardprofit) * pushmoney
        sum = 100000 * 0.1 + realpushmoney

    else:
        ...
如果你的 else 是跟着 for 的,就这么改:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
for i in range(0, 6):
    if realprofit > standardprofit:
        realpushmoney += (realprofit - standardprofit) * pushmoney
    sum = 100000 * 0.1 + realpushmoney

else:
    ...
另外,我认为你可能想把 realpushmoney 算出来之后无论如何都要计算 sum 的值,这种情况下可能需要改成:
realprofit = int(input('请输入月利润:'))
standardprofit = [0, 100000, 200000, 400000, 600000, 1000000]
pushmoney = [0.1, 0.075, 0.05, 0.03, 0.015, 0.01]
sum = 0
for i in range(0, 6):
    if realprofit > standardprofit:
        realpushmoney += (realprofit - standardprofit) * pushmoney
    sum = 100000 * 0.1 + realpushmoney

    if realprofit <= standardprofit:
        ...
我假设你在这段代码之前初始化了 realpushmoney (你有可能忘记了初始化),并在 else 后面还写了更多内容。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-14 14:39

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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