使用 os.system 从列表中打开文件

opening a file from a list with os.system

我正在尝试从我在 Python3 中生成的列表中打开一个随机文件。

import random
BL = ["0.jpg","1.jpg","2.jpg","3.jpg"]
secure_random = random.SystemRandom()
a = secure_random.choice(BL)
os.system('open ./a')

我收到错误:

The file /pathtofile/a does not exist.
256

任何帮助将不胜感激!!

把最后一行改成:

os.system('open ./{}'.format(a))