We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94faec4 commit 7eff9e4Copy full SHA for 7eff9e4
.vscode/launch.json
@@ -0,0 +1,18 @@
1
+{
2
+ // 使用 IntelliSense 了解相关属性。
3
+ // 悬停以查看现有属性的描述。
4
+ // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+
8
+ {
9
+ "name": "Python: 当前文件",
10
+ "type": "python",
11
+ "request": "launch",
12
+ "program": "${file}",
13
+ "console": "integratedTerminal",
14
+ "justMyCode": true,
15
+ "stopOnEntry": true
16
+ }
17
+ ]
18
+}
douban_movie.py
@@ -71,6 +71,7 @@ def main():
71
col_B = 'B%s' % (name.index(i) + 1)
72
col_C = 'C%s' % (name.index(i) + 1)
73
col_D = 'D%s' % (name.index(i) + 1)
74
+ # ws1[col_A] = i
75
ws1[col_A] = i
76
ws1[col_B] = m
77
ws1[col_C] = o
0 commit comments