You are given the following line of code:
word = word.replace("\u0301", "")Copy the code, paste it into the answer box, and add an inline comment to this line saying delete stress symbols from the word.
Don't use the print() function. Instead, copy the code and add the comment.
Tip: According to PEP 8, there should be two spaces between the end of the code and the hash mark and one space after a hash mark to separate it from the comment. The structure of the resulting line should be similar to the one below:
print("It's code") # It's a comment!