✅作者简介:大家好我是hacker707,大家可以叫我hacker,新星计划第三季python赛道Top1🏆🏆🏆
📃个人主页:hacker707的csdn博客
🔥系列专栏:hacker的错误集
💬推荐一款模拟面试、刷题神器👉点击跳转进入网站
报错内容
以猜数字的小程序为例做解答,遇到这种问题该如何解决
import random
computer = random.randint(1, 100)
while True:
number = int(input("请输入100以内的整数:"))
if (number > computer):
print("大了")
elif (number < computer):
print("小了")
else:
print("恭喜你赢了")
break
报错分析
IndentationError: expected an indented block,依旧是使用单词意思来分析报错原因
IndentationError 缩进错误
expected期望
indented block 缩进块
分析可以得出:缩进错误:期望一个缩进块
居然:那应该怎么解决呢
hacker:👀👀👀
解决方案
解决方案在报错代码块前面按Tab键往后退一个缩进即可
改进后代码:文章来源:https://www.toymoban.com/news/detail-580673.html
import random
computer = random.randint(1, 100)
while True:
number = int(input("请输入100以内的整数:"))
if (number > computer):
print("大了")
elif (number < computer):
print("小了")
else:
print("恭喜你赢了")
break
python语言是用缩进块来组织代码(相同的缩进代表同一级别),而其他语言例如java是用花括号{}来组织代码文章来源地址https://www.toymoban.com/news/detail-580673.html
public class demo {
public static void main(String[] args) {
int a = 5;
if (a > 10) {
System.out.print("a是大于10的数");
} else {
System.out.print("a是小于10的数");
}
}
}
到了这里,关于IndentationError: expected an indented block的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!