Spaces:
Sleeping
Sleeping
File size: 132 Bytes
a1551fc |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
index = 0
for item in os.scandir("test"):
print(item)
index += 1
if index is 5:
break
|