Answer:
computer programming
Explanation:
says the answer in the question
Answer:
if the input is zero the out put is 1
Explanation:
because if you think about it if the input was 1 the output would be zero
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