Answer:
It’s so we can then understand other cultures and other ways that people do things or we can also be prepared for what a country that we have not been to yet is going to relatively be like. This can also help with vacation planning.
Explanation:
it can also help us understand different people from different cultures.
Answer:
def extract_word_with_given_letter(sentence, letter):
words = sentence.split()
for word in words:
if letter in word.lower():
return word
return ""
# Testing the function here. ignore/remove the code below if not required
print(extract_word_with_given_letter('hello HOW are you?', 'w'))
print(extract_word_with_given_letter('hello how are you?', 'w'))
The answer is b i did the same thing and i got it right