用python 编写,将两个变量分别传在命令sudo sed -i s/"3.7.7"/"3.6.9"/ /etc/github/enterprise-release 3.7.7和3.6.9的位置
时间: 2024-01-19 19:04:28 浏览: 61
python和shell变量互相传递的几种方法
可以这样写:
```python
old_version = "3.7.7"
new_version = "3.6.9"
command = f"sudo sed -i s/{old_version}/{new_version}/ /etc/github/enterprise-release"
```
其中,使用了f-string来将变量插入到字符串中,即使用{}括起来,并在前面加上f。
阅读全文