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.
2 parents 30d687b + 1760651 commit 5ded379Copy full SHA for 5ded379
128.md
@@ -142,7 +142,7 @@ Bill正在介绍他的项目,嘴里不断蹦出“loop、iterate、traversal
142
143
>>> f = open("208.txt") #从头再来
144
>>> for line in f:
145
- ... print line,
+ ... print line, #Python 3: print(line,end='')
146
...
147
Learn python with qiwsir.
148
There is free python course.
201.md
@@ -99,7 +99,7 @@
99
100
if __name__ == "__main__":
101
result = add_function(2, 3)
102
- print result
+ print result #python3: print(result)
103
104
然后将文件保存,我把她命名为20101.py,你根据自己的喜好取个名字。
105
0 commit comments