Created
May 13, 2015 11:55
-
-
Save yupe/34486fb3e271d935f49e to your computer and use it in GitHub Desktop.
???
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
n = [3, 5, 7] | |
def double_list(x): | |
n.append('!') | |
print n | |
# Don't forget to return your new list! | |
print double_list(n) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
В данном случае, у тебя:
передаётся локальная переменная "x", а работаешь с глобальной "n"