count = 0
def lol(count):
x = count + 1
print(x)
Currently i am calling this function within another file in my python program, and count is = 1 everytime it is ran, im unsure why, im trying to make it +1 after every time it is ran.
Any help would be greatly appriciated.