gpt4 book ai didi

python - 错误 "mismatched input"期待 DEDENT

转载 作者:太空狗 更新时间:2023-10-29 22:11:56 25 4
gpt4 key购买 nike

关注此tutorial我在 y = 1 处收到以下错误;我正在为 Python 使用 Netbeans 6.5。谢谢

      y=1
^

SyntaxError: line 8:3 mismatched input '' expecting DEDENT (temperatureconverter.py, line 8)

以下是python代码,帮我格式化一下谢谢

__author__="n"
__date__ ="$Jan 9, 2011 3:03:39 AM$"

def temp():
print "Welcome to the NetBeans Temperature Converter."
y=1
n=0
z=input("Press 1 to convert Fahrenheit to Celsius, 2 to convert Celsius to Fahrenheit, or 3 to quit:")
if z!=1 and z!=2 and z!=3:
e=input("Invalid input, try again?(y or n)")
if e==1:
t=''
temp()
if e==0:
t="Thank you for using the NetBeans Temperature Converter."
print "Celsius Fahrenheit" # This is the table header.
for celsius in range(0,101,10): # Range of temperatures from 0-101 in increments of 10
fahrenheit = (9.0/5.0) * celsius +32 # The conversion
print celsius, " ", fahrenheit # a table row
temp()

最佳答案

print 语句中,您使用了 2 个空格来缩进该行,而在下一个语句中,您放置了 3 个空格。

空格在 Python 中很重要。具体来说,如果您在一行中有一定程度的缩进,则不能只在下一行使用另一个缩进。

关于python - 错误 "mismatched input"期待 DEDENT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4639556/

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