I have a python file like this,
# a.py count = 0 def inc() global count count = count + 1
And I need to access count fr
count