Hey!
I believe the answer to 1. Should be A. Rule of Thirds.
Answer:
Explanation:
The following code is written in Python and does exactly as requested. It is a function named replace_one(t, d) that takes the two parameters one text/word and one dictionary. If the word is found as a key in the dictionary it places the value in a variable called new_word and returns it to the user, if it is not found then the function returns nothing.
def replace_once(t, d):
if t in d:
new_word = d.get(t)
return new_word
return