python3 os
时间: 2023-08-16 07:04:00 浏览: 152
Python中的`os`模块提供了与操作系统交互的函数,可以对文件和目录进行操作,获取环境变量等。下面是一些常见的`os`模块的用法:
1. 获取当前工作目录:
```python
import os
current_dir = os.getcwd()
print(current_dir)
```
2. 创建目录:
```python
import os
os.mkdir("new_directory")
```
3. 删除目录:
```python
import os
os.rmdir("directory_to_delete")
```
4. 列出目录中的文件和子目录:
```python
import os
files = os.listdir("directory_path")
for file in files:
print(file)
```
5. 删除文件:
```python
import os
os.remove("file_to_delete")
```
这只是`os`模块的一部分功能,还有其他很多函数可供使用。你可以查看Python官方文档以了解更多详细信息。
阅读全文