# Calling Python Code that is Saved in Another File

## Calling Python Code that is Saved in Another File

```python
from <folder_name>.<filename> import <Class_name>
```

How this would look:

```python
from machines.vehicle_stuff import Vehicle
```
