首页 > 代码库 > 【Python3】解决引号内的变量可用性问题

【Python3】解决引号内的变量可用性问题



import os
# cp /home/file_name1 /home/name/file_name2
a1=cp /home/
a2=str(file_name1)
a3=/home/name/
a4=str(file_name2)
a=a1+a2+ +a3+a4
tem=os.popen(a)
tem

 

 
 

【Python3】解决引号内的变量可用性问题