Yes, we can use a file as either a module (importing it into some other program) or as a program in itself. Kinda cool!
Glad to! modules
Modules are a way to (1) use code that others have implemented, such as Flask
and (2) to divide up your own code, as if you were your own client.
Modules are a good thing.
OOP is good when the program builds state and uses it to divide the work among lots of objects. For us, the state mostly lives in the database.
You did some OOP in CS 230: programs that build a representation of a tree or a graph and use it to solve problems.
Never in my class. OOP is important, but not for us.
For sure!
You'll get an error, because strings are immutable.