Last active
December 1, 2017 11:32
-
-
Save erikaris/a1d1773e282d1e08d8de1f84ab02648a 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
# This function uses global variable s | |
# s is only used for printing --> no problem happens | |
def f(): | |
print(s) | |
# Global scope | |
s = "Erika Siregar" | |
f() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment