Skip to content

Commit 5ded379

Browse files
committed
Merge pull request #93 from hsj1992/master
Update 128.md/201.md
2 parents 30d687b + 1760651 commit 5ded379

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

128.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Bill正在介绍他的项目,嘴里不断蹦出“loop、iterate、traversal
142142

143143
>>> f = open("208.txt") #从头再来
144144
>>> for line in f:
145-
... print line,
145+
... print line, #Python 3: print(line,end='')
146146
...
147147
Learn python with qiwsir.
148148
There is free python course.

201.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999

100100
if __name__ == "__main__":
101101
result = add_function(2, 3)
102-
print result
102+
print result #python3: print(result)
103103

104104
然后将文件保存,我把她命名为20101.py,你根据自己的喜好取个名字。
105105

0 commit comments

Comments
 (0)