Answer:
see explaination
Explanation:
def words2number(s):
words = s.split()
numbers = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
result = ""
for word in words:
if word in numbers:
result += str(numbers.index(word))
return result
Answer:
autocratic
Explanation:
taking no account of other peoples wishes or opinions; domineering
Answer:
hyperlink
Explanation:
Hyperlinks render as underlined by default, so that's my guess.