python与linux命令简单结合

import os


print('plaese input old_name')
old_name=raw_input()
print('plaese input new_name')
new_name=raw_input()

os.system("mv %s %s"%(old_name,new_name))

 

在liunx环境下,先导入os,raw_input()方法用来接收字符串类型的数据,%s用来占位。

mv old_name new_name    此命令是在liunx内给文件移位或改名的
 

你可能感兴趣的:(python)