今天来练手Python中的文件操作!😎 使用`os.path.exists()`检查文件是否存在,真的是个超实用的小技巧。想象一下,当你需要读写文件时,先确认文件路径是否有效,可以避免很多麻烦。😉
首先,我们导入`os`模块:
```python
import os
```
接着,定义一个文件路径:
```python
file_path = "example.txt"
```
然后用`os.path.exists()`判断文件是否存在:
```python
if os.path.exists(file_path):
print("文件存在!✨")
else:
print("文件不存在,需要创建。📝")
```
如果文件不存在,我们可以用`open()`函数新建并写入
```python
with open(file_path, 'w') as f:
f.write("Hello, World! 🌟")
```
最后,再次检查文件状态:
```python
if os.path.exists(file_path):
print("文件已成功创建!🎉")
```
通过这个小练习,是不是觉得文件IO变得简单了呢?🌟 掌握这些基础操作,就能轻松处理更多复杂任务啦!💪
Python FileIO os.path.exists 编程练习