我是 python 的菜鸟,似乎无法让我的程序做我想做的事。我希望用户指定他们想要打开的 .gif 文件,然后程序将显示.gif
他们指定的文件。不知道我做错了什么。如果有人可以请帮助我,我将不胜感激。我希望他们指定文件,然后程序将文件重命名为文件夹中的“变量”。打开调用"variable.gif"
的文件/path/path/variable.gif
files = listdir(".")
print("List of GIF files in Directory:")
for f in files:
if f[-4:] == ".gif":
print(f)
print("type quit to close the program")
gif1 = input("type which .gif you would like to modify and press enter:")
infile = open(gif1, "r")
outfile= open("gif1.gif", "w")
os.system('eog {0}'.format(r'home/pictures/gif1'))