To loop through the files names from os.listdir(), we can use a for loop.

Create a for loop to loop for each file name in os.listdir().

Sweet! You now have the tools to loop through files in a directory and make changes to them.

You'll need to assemble for file_name in os.listdir() to loop through each file name in the current directory.