Quick actions

cmd+k|ctrl+k

Navigation

Languages

Hole

Snippet info

Language

Python

Visibility

public

Author

yoneda

Created

2019-02-26T11:19:56Z

Updated

2019-12-12T02:42:47Z

def fun(i, xs = []):
    xs.append(i)
    print(xs)
    
for i in range(10):
    fun(i)
INFO