Answer:
books = []
fp = open("bookTitles.txt")
for line in fp.readlines():
title = line.strip()
if title not in books:
books.append(title)
fp.close()
fout = open("noDuplicates.txt", "w")
for title in books:
print(tile, file=fout)
fout.close()
except FileNotFoundError:
print("Unable to open bookTitles.txt")
Answer and Explanation:
The answer is attached below
Answer:
The five stages of Design Thinking, according to d.school, are as follows: Empathise, Define , Ideate, Prototype, and Test. Let's take a closer look at the five different stages of Design Thinking
Explanation:
Answer:
birds-eye view perspective
Explanation:
If someone asked me to design an office building, I would draw it from a birds-eye view perspective. I would draw it this way so I could map out where everything in the office would go and make sure I have enough space for everything. I would also draw it this way in order to clearly see where everything would go in the office. For instance, cubicles/desks could go in the bottom left corner, while the boss's office could go in the top right. It would be easier to organize and it would be easier for me to look back on when I need to actually design the office later.
(i'm not sure if this is what your question is asking for so i just made my best guess)