Created
May 4, 2015 15:53
-
-
Save vtemian/19535a1aad05e8f47162 to your computer and use it in GitHub Desktop.
simple mutable
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def foobar(arg_string="abc", arg_list=[]): | |
print arg_string, arg_list | |
arg_string = arg_string + "xyz" | |
arg_list.append("F") | |
for i in range(4): | |
foobar() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment