如何从文件夹中显示随机图片(Python)

时间:2014-10-20 14:15:21

标签: python

我必须使用Python从文件夹中显示随机图像。我试过了

import random, os
random.choice([x for x in os.listdir("path")if os.path.isfile(x)])

但它对我不起作用(它给出了Windows错误:错误的目录语法,即使我刚复制并粘贴)。

哪个可能是问题?

1 个答案:

答案 0 :(得分:7)

您需要指定正确的相对路径:

random.choice([x for x in os.listdir("path")
               if os.path.isfile(os.path.join("path", x))])

否则,代码将尝试在当前目录中找到文件(image.jpg)而不是"path"目录(path\image.jpg)。

<强>更新

正确指定路径。特别是逃避反斜杠或使用r'raw string literal'。否则\..被解释为转义序列。

import random, os
path = r"C:\Users\G\Desktop\scientific-programming-2014-master\scientific-programming-2014-master\homework\assignment_3\cifar-10-python\cifar-10-batches-py"
random_filename = random.choice([
    x for x in os.listdir(path)
    if os.path.isfile(os.path.join(path, x))
])
print(random_filename)