在 Python 中,你可以使用 `os` 模塊來獲取當前工作目錄(當前路徑)。你可以按照以下步驟來獲取當前路徑:
1. 導入 `os` 模塊:
```python
import os
```
2. 使用 `os.getcwd()` 函數來獲取當前工作目錄的路徑:
```python
current_path = os.getcwd()
print("當前路徑是:", current_path)
```
以上代碼將打印出當前工作目錄的路徑。這樣你就可以在 Python 程序中獲取并使用當前路徑信息了。