494 B
494 B
Using classes to navigate between files in python is a common thing you will be doing. Hence, knowing when to create python classes is important as well as knowing how to use the methods created in the classes file.
For example:
import Car
if you have a car.py
class file and you are trying to bring that into another action.py
file.
Learn more about imports in python here.