Перечислите все файлы, начиная с Python

import os
prefixed = [filename for filename in os.listdir('.') if filename.startswith("prefix")]
Demo Can