python with open 修改文件指定行
python with open 修改文件指定行
```python
# 把当前文件中的token换为新的
if __name__ == '__main__':
token = 'token'
print token
# os.path.abspath(__file__) 获取当前文件de绝对路径
with open(os.path.abspath(__file__), 'r+') as f:
rows = f.readlines()
for i, line i
原创
2021-06-01 11:42:57 ·
1252 阅读 ·
0 评论