python字符串格式化中的百分号的转义字符是双写百分号

举两个例子:


1. 要执行的shell命令行是

./ffmpeg -r 30 -f image2 -i ./input/320/%d.jpg -vcodec libx264 ./output/320.h264

这里的ffmpeg命令行字符串中有个%s.h264需要用后面的resolution替换,在这种情况下,前面的%d.jpg需要双写百分号

resolution = "320"
os.system("./ffmpeg -r 30 -f image2 -i ./input/320/%%d.jpg -vcodec libx264 ./output/%s.h264" % resolution)

2. 要执行的shell命令行仍然是

./ffmpeg -r 30 -f image2 -i ./input/320/%d.jpg -vcodec libx264 ./output/320.h264

但这里除了命令行中本身具有的shell格式的%d通配符以外,没有其他百分号,这时,这里的%d的百分号不需要双些,下面这样就可以了

os.system("./ffmpeg -r 30 -f image2 -i ./input/320/%d.jpg -vcodec libx264 ./output/320.h264")


你可能感兴趣的:(python字符串格式化中的百分号的转义字符是双写百分号)