Answer:
my choice purpose
Explanation:
the writer simply writes with a purpose to make his audience understand it's with the purpose that he writes
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.
Use currency conversion dialog box select rupee to us dollar
Answer:
The answer is A.Absolute reference.
Explanation:
Absolute reference is a cell reference whose location remains constant when the formula is copied.