HomeUsing Python Libraries (Preeti Arora) Find and write the output of the following Python code: a = 10 def call() 3 Comments Facebook Twitter Q. Find and write the output of the following Python code:a = 10def call() : global a a = 15 b = 20 print (a)call()Answer =Output :-15
a = 10
ReplyDeletedef call ( ):
global a
a = 15
b = 20
print ( a)
call ( )
Output :-
Delete15
15
DeletePost a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )