python random pick random file from directory code example
Example: random pick any file from directory python
import os, random
random.choice(os.listdir("C:\\")) #change dir name to whatever
import os, random
random.choice(os.listdir("C:\\")) #change dir name to whatever