What is the output of below program?
count = 1   

def careerbodh():

global count

for i in (1, 2, 3):

count += 1

careerbodh()

print (count)

Posted on by