This repository has been archived on 2023-07-05. You can view files and clone it, but cannot push or open issues/pull-requests.
notes/Terminal Tips/Commands + Settings/Languages/Python/code/Classes.md

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.