提交 e2022615 编写于 作者: F feilong

改进12题

上级 0f3c5f28
{ {
"source": "step.py", "source": "step.md",
"depends": [], "depends": [],
"exercise_id": 83, "exercise_id": 83,
"type": "code_options" "type": "code_options"
......
# 看不见的开始和结束
![](./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: *')
```
...@@ -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.
先完成此消息的编辑!
想要评论请 注册