1# When Python parses the body of a function definition and encounters an assignment such as
2
3 feed = 5
4#Python interprets feed as a local variable by default. If you do not wish for it to be a local variable, you must put
5
6global feed
7feed = 5