Python supports functions and variables directly in a .py file. So I need not have a class under which these are placed.
Are these functions and variables static? What is the Python terminology for this?
In Python methods can be static methods or class methods. Can variables be static variables or class variables in Python or are they the same thing?