Whatever you have written on the page is what it'll name it.
Answer:
ppl
Explanation:
asfafgdffsghsdfghdgsghdfghtrbd54445 ddfgg
Answer:
denial-of-service (DoS) attacks
Explanation:
<span>network layer
hope it helped</span>
Answer:
import re
with open("../../Downloads/Tweets.txt","r", encoding="utf-8") as tweets:
myfile = tweets.readlines()
for item in myfile:
item = item.rstrip()
mylist = re.findall("^RT (.*) ", item)
if len(mylist) !=0:
for line in mylist:
if line.count("#") >=1:
ln = line.split("#")
dm = ln[1]
print(f"#{dm}")
Explanation:
The python source code filters the document file "Tweets" to return all tweets with a hashtag flag, discarding the rest.