MCPcopy Create free account
hub / github.com/LinkedInLearning/learning-python-2896241 / someFunction

Function someFunction

Ch2 - Basics/variables_finished.py:44–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

42
43# Global vs. local variables in functions
44def someFunction():
45 #global mystr
46 mystr = "def"
47 print (mystr)
48
49someFunction()
50print (mystr)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected