Much like Java (or php), I\'m use to seperating the classes to files. Is it the same deal in Python? plus, how should I name the file? Lowercase like classname.py or t
No, you can define multiple classes (and functions, etc.) in a single file. A file is also called a module.
To use the classes/functions defined in the module/file, you will need to import the module/file.
import