I Want a script that renames a file on my computer to something random every second, I have the code to rename it here
import os
os.rename('Original-File-Name', 'New-File-Name')
Here's the script that outputs a random letter
import string
import random
string.ascii_letters = "abcdefghijklmnopqrstuvwxyz1234567890"
random.choice(string.ascii_letters)
I Want it to rename the file with a random letter every second, how would I do that? (I'm not very good with loops)