Select the correct form of the verb to be and identify the t…

Select the correct form of the verb to be and identify the type of information expressed in the sentence. Yo [answer1] en la cafetería de la Universidad Autónoma de México. I chose this verb because the sentence expresses: [answer2] Mi compañera de clase se llama Julia, y ella [answer3] muy inteligente. I chose this verb because the sentence expresses: [answer4] Julia [answer5] de Costa Rica. I chose this verb because the sentence expresses: [answer6] Ahora nosotras [answer7] cansadas porque estudiamos toda la noche para el examen de español. I chose this verb because the sentence expresses: [answer8]

Select the correct option to complete each sentence. Yo  [a…

Select the correct option to complete each sentence. Yo  [answer1] a las seis en punto todos los días. Mis amigos y yo [answer2] muy tarde los fines de semana. Mi hermana [answer3] los platos después de cenar. Mi mamá [answer4] la televisión por la noche. ¿[answer5] tú con frecuencia? Las enfermeras [answer6] el uniforme al llegar al hospital.

You are given a file “text.txt” that contains words from the…

You are given a file “text.txt” that contains words from the English Language. The text is stored in the file as one sentence per line. The contents of the file  is similar to the following image: Write Python code to perform the following: Read all the contents of the file. Store each word in a list called words.  Remove periods and commas, that is, make sure that the elements in the words list do not contain any punctuation characters (don’t worry about any other non-alphabet characters). From the words list, create another list called length_five such that each word in length_five has exactly the length 5.

Write Python code that searches for an integer value in a li…

Write Python code that searches for an integer value in a list and prints out how many times it was found in the list. If the integer is not in the list, it prints out a message informing the user about it. For example, give the numbers list below, when the search integer is 5, it will print “5 found in the list 2 times.”. However, when the search integer is 40, it prints “40 not found in the list.” index 0 1 2 3 4 5 6 numbers 12 5 14 5 7 9 45