Computer Science, asked by yashika3429, 7 months ago

a python code to extract the elements where the third character is a vowel.
Input format: [("aderf"),("qqwd"),("cvgfr"),("cniop")]

Answers

Answered by RuwaisnZaid
0

Explanation:

t = [("aderf"),("qqwd"),("cvgfr"),("cniop")]

vow = "aeiouAEIOU"

for i in t:

if i[2] in vow:

print(i,end=" ")

Mark me as brainly */*

Similar questions