The Simplest Python Class
class Loaf: #The name of this class is Loaf, which doesn't inherit from any other class
pass # a statement that does nothing, syntactically, there needs to be something in the
# definition, so you use pass. This is a Python reserved word that just means “move
# along, nothing to see here”
Defining the FileInfo Class