Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0e295b4

Browse files
committed
Merge pull request taizilongxu#10 from air82/master
add func call in chapter 1.1
2 parents 652b31b + 26c3ba0 commit 0e295b4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Readme.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,13 +122,15 @@
122122
a = 1
123123
def fun(a):
124124
a = 2
125+
fun(a)
125126
print a # 1
126127
```
127128

128129
```python
129130
a = []
130131
def fun(a):
131132
a.append(1)
133+
fun(a)
132134
print a # [1]
133135
```
134136

0 commit comments

Comments
 (0)