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")
-
LIVE
SlingerGames
2 hours agoWe Gaming Tonight | Creator for @SMKAcademy
26 watching -
LIVE
GrimmHollywood
13 hours ago🔴LIVE • GRIMM HOLLYWOOD • GRIMM STRANDING DAY 3 • STREAM DOESN'T END TIL I BEAT DEATH STRANDING
101 watching -
49:03
The Quartering
2 hours agoFirst Play Through! Clair Obscur: Expedition 33
22K3 -
LIVE
Saycred Angel Live
3 hours ago🍻FRIDAY FAMILY FIGHT NIGHT🍻!TANGIA | !GIVEAWAY #RUMBLETAKEOVER
235 watching -
1:04:06
The Charlie Kirk Show
5 hours agoTHOUGHTCRIME Ep. 88 — Tucker v. Cruz? The Bloodthirsty Base? Charlie Goes to the WNBA?
61.4K41 -
LIVE
I_Came_With_Fire_Podcast
13 hours agoCHINA WANTS IRAN | Stream Wins | The FED | G7 VS. CHINA
534 watching -
10:53
China Uncensored
3 hours agoI KNEW This Was Coming!
19K5 -
LIVE
SynthTrax & DJ Cheezus Livestreams
1 day agoFriday Night Synthwave 80s 90s Electronica and more DJ MIX Livestream Art & Sound Edition
479 watching -
megimu32
4 hours agoOFF THE SUBJECT: FAFO Friday Bodycam Mayhem & Fortnite Shenanigans
29.2K3 -
48:09
Glenn Greenwald
11 hours agoGlenn Takes Your Questions on War with Iran, Executive Power, the Trump Presidency, and More | SYSTEM UPDATE #473
142K30