Skip to content

Instantly share code, notes, and snippets.

@dboyliao
Last active August 10, 2017 09:00
Show Gist options
  • Select an option

  • Save dboyliao/4df43ce5003a1759097352e253210aae to your computer and use it in GitHub Desktop.

Select an option

Save dboyliao/4df43ce5003a1759097352e253210aae to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
# -*- coding:utf8 -*-
def main():
a = 5
def foo():
nonlocal a;
a += 1
print(a)
print(foo())
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment