Answers for "Scope, Global Variables and Global Keyword"

0

Scope, Global Variables and Global Keyword

L = 10 #GLOBAL
def function1(n):
  L =5
  m = 8
  print(L,m)
  print(n, "I HAVE PRINTED")

#funiction1("THIS IS ME")
print(L, m)
Posted by: Guest on January-26-2022

Code answers related to "Scope, Global Variables and Global Keyword"

Browse Popular Code Answers by Language