Predict the output for below code in python
Count =10
Def function1() :
Global Count
for i in(1,2,3) :
Count=Count+1
function1()
print(Count)
The variable Count is the same that is defined outside and inside the function , so the changes will be reflected to the same variable.