Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_python
提交
e2022615
S
skill_tree_python
项目概览
CSDN 技术社区
/
skill_tree_python
通知
66
Star
14
Fork
6
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_python
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e2022615
编写于
11月 21, 2021
作者:
F
feilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
改进12题
上级
0f3c5f28
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
163 addition
and
4 deletion
+163
-4
data/1.python初阶/2.基础语法/1.缩进规则/space.jpg
data/1.python初阶/2.基础语法/1.缩进规则/space.jpg
+0
-0
data/1.python初阶/2.基础语法/1.缩进规则/step.json
data/1.python初阶/2.基础语法/1.缩进规则/step.json
+1
-1
data/1.python初阶/2.基础语法/1.缩进规则/step.md
data/1.python初阶/2.基础语法/1.缩进规则/step.md
+150
-0
data/1.python初阶/2.基础语法/1.缩进规则/step.py
data/1.python初阶/2.基础语法/1.缩进规则/step.py
+12
-3
未找到文件。
data/1.python初阶/2.基础语法/1.缩进规则/space.jpg
0 → 100644
浏览文件 @
e2022615
51.4 KB
data/1.python初阶/2.基础语法/1.缩进规则/step.json
浏览文件 @
e2022615
{
{
"source"
:
"step.
py
"
,
"source"
:
"step.
md
"
,
"depends"
:
[],
"depends"
:
[],
"exercise_id"
:
83
,
"exercise_id"
:
83
,
"type"
:
"code_options"
"type"
:
"code_options"
...
...
data/1.python初阶/2.基础语法/1.缩进规则/step.md
0 → 100644
浏览文件 @
e2022615
# 看不见的开始和结束
![](
./space.jpg
)
作用域是编程语言里的一个重要的概念,特别是块作用域,编程语言一般会使用明确的符号标记一个作用域的开始和结束。
例如 C、C++、Java、C#、Rust、Go、JavaScript 等常见语言都是用
`"{"`
和
`"}"`
来标记一个块作用域的开始和结束:
```
c
// 这是一个C语言程序
if
(
i
<
10
){
if
(
i
<
5
){
print
(
"win more!"
);
}
else
{
print
(
"win"
);
}
}
else
{
print
(
"loose"
);
}
```
```
rust
// 这是一个 Rust 语言程序
if
i
<
10
{
if
i
<
5
{
println!
(
"win more!"
);
}
else
{
println!
(
"win"
);
}
}
else
{
println!
(
"loose"
);
}
```
而 Python 程序则是用缩进来表示块作用域的开始和结束:
```
python
# 这是一个 Python 程序
if
i
<
10
:
if
i
<
5
:
print
(
"win more!"
)
else
:
print
(
"win"
)
else
:
print
(
"loose"
)
```
Python 对缩进有严格的要求,同一个源文件里,缩进必须保持一致,例如都是2个空格或者4个空格。Python 这么做的理由是使用缩进更简洁,同时不用考虑
`"{"`
要放在哪一行,而且是用缩进足够Python解释器正确解析。但是使用缩进如果没有编辑器自动检测和格式化也会带来一些不必要的麻烦。
请选出下面的 Python 代码中,
<span
style=
"color:red"
>
缩进错误
</span>
的选项。
## template
```
python
# 全局代码
for
i
in
range
(
0
,
10
):
print
(
'global code: {}'
.
format
(
i
))
if
i
==
5
:
print
(
'global code: *'
)
# 函数
def
test
():
for
i
in
range
(
0
,
10
):
print
(
'function code: {}'
.
format
(
i
))
if
i
==
5
:
print
(
'function code: *'
)
# 类
class
Test
():
def
__init__
(
self
)
->
None
:
pass
def
test
(
self
):
for
i
in
range
(
0
,
10
):
print
(
'member function code: {}'
.
format
(
i
))
if
i
==
5
:
print
(
'member function code: *'
)
if
__name__
==
'__main__'
:
i
=
0
c
=
5
max
=
10
while
i
<
max
:
d
=
max
-
i
-
i
if
abs
(
d
)
<
3
:
print
(
i
,
max
-
i
)
else
:
pass
i
+=
1
```
## 答案
```
python
if
__name__
==
'__main__'
:
i
=
0
c
=
5
max
=
10
while
i
<
max
:
d
=
max
-
i
-
i
if
abs
(
d
)
<
3
:
print
(
i
,
max
-
i
)
else
:
pass
i
+=
1
```
## 选项
### A
```
python
for
i
in
range
(
0
,
10
):
print
(
'global code: {}'
.
format
(
i
))
if
i
==
5
:
print
(
'global code: *'
)
```
### B
```
python
def
test
():
for
i
in
range
(
0
,
10
):
print
(
'function code: {}'
.
format
(
i
))
if
i
==
5
:
print
(
'function code: *'
)
```
### C
```
python
class
Test
():
def
__init__
(
self
):
pass
def
test
(
self
):
for
i
in
range
(
0
,
10
):
print
(
'member function code: {}'
.
format
(
i
))
if
i
==
5
:
print
(
'member function code: *'
)
```
data/1.python初阶/2.基础语法/1.缩进规则/step.py
浏览文件 @
e2022615
...
@@ -31,6 +31,15 @@ class Test():
...
@@ -31,6 +31,15 @@ class Test():
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
test
()
i
=
0
t
=
Test
()
c
=
5
t
.
test
()
max
=
10
while
i
<
max
:
d
=
max
-
i
-
i
if
abs
(
d
)
<
3
:
print
(
i
,
max
-
i
)
else
:
pass
i
+=
1
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录