Premium Only Content
![Working with Dates and Times |Section 6|Celestial Warrior](https://1a-1791.com/video/s8/1/r/l/b/t/rlbtk.qR4e-small-Working-with-Dates-and-Time.jpg)
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")
-
2:04:52
Kim Iversen
14 hours agoElon's Pumping Out Babies Like They're Tesla Model 3's | EU Panics Over Peace Talks, Wants More War
168K163 -
1:05:35
Man in America
17 hours agoFort Knox & Trump’s Secret Gold Move—The Financial Reset NO ONE Is Ready For?
119K133 -
2:21:20
Robert Gouveia
14 hours agoTrump Goes to SCOTUS! Judge CAVES on DOGE? Fani Willis Not Happy!
127K33 -
20:41
Stephen Gardner
14 hours ago🔥You Won't BELIEVE What JUST Happened To Don Trump Jr.!!
134K223 -
58:00
The StoneZONE with Roger Stone
12 hours agoEuropean Leaders Resist Trump Peace Overtures To Their Own Demise | The StoneZONE w/ Roger Stone
95.8K12 -
9:29
AlaskanBallistics
13 hours ago $12.11 earnedWyoming Suppressors and Rifles at Shot Show 2025
113K6 -
1:06:40
Donald Trump Jr.
17 hours agoThe Left is Taking one L After Another, Live with Michael Knowles | Triggered Ep. 217
201K154 -
47:17
Kimberly Guilfoyle
17 hours agoWoke Gets DOGE’d, Live with AJ Rice & Jarrett Stepman | Ep. 197
145K46 -
20:11
Candace Show Podcast
16 hours agoBecoming Brigitte: Candace Owens x Xavier Poussard | Ep 6
218K380 -
8:25:38
Dr Disrespect
20 hours ago🔴LIVE - DR DISRESPECT - ELDEN RING DLC - REVENGE
207K23