Spaces:
Runtime error
Runtime error
| import os | |
| files = os.listdir(os.getcwd() + '/docs/processed') | |
| result_string = '' | |
| for idx, f in enumerate(files): | |
| result_string += str(idx + 1) + '.' + f.split('_p')[0] + '<br>' | |
| print(result_string) | |