The answer is "Slide Sorter view". Some of the online courses say that all words must be spelled correctly and in the correct order, so if you don't have exactly what they want they will mark it as "wrong".
Answer:
a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.
Explanation:
It stands for Electronic Business, a typical example of this is a online store.
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.