python运维常用代码
时间: 2023-12-11 21:33:22 浏览: 110
Python运维开发.zip
以下是Python运维常用代码的一些例子:
1.读取文件内容并打印
```python
with open('file.txt', 'r') as f:
content = f.read()
print(content)
```
2.写入内容到文件
```python
with open('file.txt', 'w') as f:
f.write('Hello, world!')
```
3.遍历目录下的所有文件
```python
import os
for root, dirs, files in os.walk('/path/to/dir'):
for file in files:
print(os.path.join(root, file))
```
4.异常处理
```python
try:
# 可能会发生异常的代码
except SomeException:
# 处理 SomeException 异常
except AnotherException:
# 处理 AnotherException 异常
else:
# 如果没有异常发生,执行这里的代码
finally:
# 不管是否发生异常,都会执行这里的代码
```
阅读全文