需要指定正确的相对路径: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)