Created
December 1, 2017 14:02
-
-
Save erikaris/9e8b58c175f1b9bc86101e77666d1331 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
def f(): | |
global s | |
print(s) | |
s = "Mukhlisina" | |
print(s) | |
s = "Erika Siregar" | |
f() | |
print(s) # s here is the global s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment