Choose the correct answer for each sentence. Me [answer1] l…
Choose the correct answer for each sentence. Me [answer1] la música latina. No me [answer2] los exámenes A los estudiantes les [answer3] la clase de español. ¿ A ti [answer4] gustan las charlas con Eloy? A mí [answer5] gustan las clases en la universidad.
Read DetailsComplete the conversation with the appropriate possessive ad…
Complete the conversation with the appropriate possessive adjective. TÚ: ¿Es una foto de tu familia?PAULA: Sí, [answer1] familia no es muy grande.TÚ: ¿Quién es el esposo de [answer2] hermana Andrea?PAULA: [answer3] esposo es Pedro, el hombre elegante de sombrero.TÚ: ¿Tienen hijos? ¿Dónde están los hijos de ellos?PAULA: ¿[answer4] hijas? No están en la foto.
Read DetailsSelect 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]
Read Details[Extra Credit: 10 pts] You should be writing two different f…
[Extra Credit: 10 pts] You should be writing two different functions to get full points for extra credit. Write a Python function called count_lowercase() that takes a string as an argument and counts and returns the number of lowercase characters in the argument. Write a Python function called count_digit() that takes a string as an argument and counts and returns the number of digits in the argument. Use the functions in Step a. and Step b. above to write a Python statement to validate a password where the password should have at least one lowercase character and one digit character.
Read DetailsYou are given a file “words.txt” that contains words from th…
You are given a file “words.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_seven such that each word in length_seven has exactly the length 7.
Read Details