码迷,mamicode.com
首页 > 编程语言 > 详细

3-7.python函数的基础调用之异常1(IndentationError: unindent does not match any outer indentation level)

时间:2020-06-20 11:09:48      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:outer   files   python3   技术   net   func   err   说明   code   

代码:

技术图片

结果:

PS E:\30.Study\30.自动化测试\99.零基础入门 Python Web 自动化测试\10.seleniumCodePractice> & "C:/Program Files/Python38/python.exe" "e:/30.Study/30.自动化测试/99.零基础入门 Python Web 自动化测试/10.seleniumCodePractice/202006/python_function.py"
  File "e:/30.Study/30.自动化测试/99.零基础入门 Python Web 自动化测试/10.seleniumCodePractice/202006/python_function.py", line 8
    people(10)
             ^
IndentationError: unindent does not match any outer indentation level
PS E:\30.Study\30.自动化测试\99.零基础入门 Python Web 自动化测试\10.seleniumCodePractice>

原因分析:

python对缩进有严格的要求,既然提示line 8有问题,说明在line 8缩进有问题,原来在 people(10)前面有一个空格

对应方法:

people(10)前面的空格删除即可,下图:

技术图片

补充:

转自:https://blog.csdn.net/IAMoldpan/article/details/78347346

IAMoldpan总结了以下几种常见的缩进错误:

1、代码前后缩进量不一致

2、代码前后缩进符号不一致

3、tab与space混用

 

3-7.python函数的基础调用之异常1(IndentationError: unindent does not match any outer indentation level)

标签:outer   files   python3   技术   net   func   err   说明   code   

原文地址:https://www.cnblogs.com/hadas/p/13167582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!