Hey! Yeah, the cd command Python equivalent is `os.chdir()`. It’s not as straightforward as the terminal, but it works.
If you’re into automation, you might wanna look into `pathlib` too. It’s a bit more modern and easier to work with for file paths.
Here’s a quick example:
```python
from pathlib import Path
Path("/your/directory").mkdir(parents=True, exist_ok=True)
```
If you’re into automation, you might wanna look into `pathlib` too. It’s a bit more modern and easier to work with for file paths.
Here’s a quick example:
```python
from pathlib import Path
Path("/your/directory").mkdir(parents=True, exist_ok=True)
```
