Skip to content

Commit

Permalink
fix python bugs - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouTimeMachine committed Jun 17, 2024
1 parent 7069934 commit 13d133d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/courses/python/hw.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
**Q1-1-7.** 在 Python 中,可以用 else 作为变量名。

??? general "Answer"
T。Python 的保留字不能作为变量名,else 是保留字。通过如下方法可以看到所有 Python 的保留字:
F。Python 的保留字不能作为变量名,else 是保留字。通过如下方法可以看到所有 Python 的保留字:
```shell
>>> import keyword
>>> keyword.kwlist
Expand Down Expand Up @@ -124,7 +124,7 @@ A. `59`

B. `5,9`

C. `5 9`(5 和 9 直接 1 个空格)
C. `5 9`(5 和 9 之间 1 个空格)

D. `5 9`(5 和 9 之间 2 个空格)

Expand Down Expand Up @@ -2121,7 +2121,7 @@ print(lst[3][1][2])

??? general "Answer"
```
a
o
```
此处的 Lambda 表达式的输入是列表的每个元组元素,输出是元组的下标为 1 的元素。因此,将以元组第二个元素 - 字符串为排序依据,对 `lst` 进行排序,得到
```
Expand Down

0 comments on commit 13d133d

Please sign in to comment.