>>17723451you worry too much about your penis man, it doesnt define you as a person, you may have trouble in the bedroom but life isnt the bedroom
>>17723459scope is basically a place where you can define variables, the global scope is available to the whole program while local scope is only available to the function
if what you dont understand is scope then this seems a pretty roundabout way of teaching you
if for example the squared function defined a variable inside of it you wouldnt be able to refer to it outside its scope
def squared():
test = 20
squared()
print(test) #this gives an error
python will tell you that test is not defined because test was created inside the squared function, which means that it lives inside squared's world
i gotta go so i typed this in a hurry, i hope i was clear enough