How to use local and global variables in function and function parameters in Python

1 Answer

0 votes
def function(c, d):
    global a
    a = 13
    c,d = c,d
    b = 111
    c = 333
    print(a, b, c, d)

a, b, c, d = 1, 2, 3, 4
function(88, 99)
print(a, b, c, d)

'''
run:

13 111 333 99
13 2 3 4

'''

 



answered Dec 18, 2017 by avibootz

Related questions

1 answer 222 views
3 answers 333 views
2 answers 254 views
1 answer 185 views
1 answer 259 views
2 answers 176 views
...