Premium Only Content

Working with Dates and Times |Section 6|Celestial Warrior
Here is a tricky exercise.
1.Please download thethree text files attached in this lecture and put them in a folder. The first text file contains the textContent1.The second contains Content2and the third Content3.
2. You should create a Python script that generates a new text file which should contain the content of all three text files. So the generated file should have this content:
Content1
Content2
Content3
In other words, your Pythonscript should merge the three text files.
3. Also, the name of the output file should be the current timestamp. Example:2017-11-01-13-57-39-170965.txt
You have some tips in the next lecture and the solution in the lecture afterthat.
1. Consider using the glob2 third-party library to generate a list of filenames to iterate through.
2. Use a "with" statement to create a new text file and then iterate through the file list inside that "with"statement and open andread existing file contentsin each iterationand write them to new text file.
import glob2
import datetime
filenames=glob2.glob("*.txt")
with open(datetime.datetime.now().strftime("%Y-%m-%d-%H-%M-%S-%f")+".txt", 'w') as file:
for filename in filenames:
with open(filename,"r") as f:
file.write(f.read()+"\n")
-
55:40
TheSaltyCracker
5 hours agoIdiots Chug Tylenol PT2 ReeEEStream 9-24-25
94.3K216 -
Akademiks
6 hours agoYoung Thug Dissing YFN Lucci. Ready to Go back to Jail. Offset vs Cardi b
57.9K2 -
7:07
Colion Noir
14 hours agoCalifornia Just Banned All Glocks
38.4K38 -
Adam Does Movies
7 hours ago $0.90 earnedTalking Movies + Ask Me Anything - LIVE
39K1 -
1:23:56
Jamie Kennedy
5 hours agoChoosing Good in a World Gone Dark | Ep 223 HTBITY with Jamie Kennedy
27.3K6 -
DVR
SpartakusLIVE
8 hours ago#1 Challenge CHAMPION of WZ || Ridin' The GRAVY Train w/ GloryJean
73.4K1 -
The Pascal Show
4 hours ago $1.09 earnedDISTURBING UPDATES! New Developments In The D4vd Celeste Case... Possible Celeste Sighting?!
29.1K2 -
2:03:18
The Charlie Kirk Show
6 hours agoTPUSA Presents This is The Turning Point Tour LIVE with Megyn Kelly and Governor Glenn Youngkin!!
229K66 -
1:37:35
Badlands Media
22 hours agoAltered State S3 Ep. 47: Epstein, DOJ Whistleblowers, and Trump’s Tightrope
51.2K10 -
putther
5 hours ago $1.06 earned⭐ F160 Raiju Jet Hunting on GTA Online Ft. GTA 5 RP ❗
32K2