Skip to content

Instantly share code, notes, and snippets.

@erikaris
Created December 1, 2017 14:02
Show Gist options
  • Save erikaris/9e8b58c175f1b9bc86101e77666d1331 to your computer and use it in GitHub Desktop.
Save erikaris/9e8b58c175f1b9bc86101e77666d1331 to your computer and use it in GitHub Desktop.
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