The answer is the letter a
Answer:
def filter_strings(data_list):
string_list = []
for s in data_list:
if type(s) == str and len(s) > 5:
string_list.append(s)
return string_list
Explanation:
Create a function called filter_strings that takes data_list as a parameter
Initialize a new list to hold the strings that are longer than 5 characters
Initialize a for loop that iterates through the data_list
Check the elements if they are string - use type function, and if their length is greater than 5 - use len function. If an element satisfies the both conditions, put it to the string_list
When the loop is done, return the string_list
word1 = input("Enter a word: ")
word2 = input("Enter a word: ")
print(word1 + " " + word2)
I hope this helps!
Answer: Extraction phase
Explanation: Transactional database is the data collection capable of undoing the transaction that has not been correctly done. Data warehouse id the place where transaction data is transmitted where different types of databases are stored.
The transmission of the information from transactional database to data warehouse is defined in the extraction phase.The extraction phase works by transforming the data into a particular format. It copes the transactional databases's data to the warehouse by making separate space for deposition of data