I have a filename named hosts_access_log_00.txt that I take in from user input like
filename = input()
I need to write some output to another filename called records_host_access_log_00.txt where the host_access_log_00.txt comes from filename
.
How can I create this filename with this specific name? (i.e. prepending "records" to the filename
)