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 218 views
3 answers 323 views
2 answers 253 views
1 answer 174 views
1 answer 254 views
2 answers 171 views
...