a python code to extract the elements where the third character is a vowel.
Input format: [("aderf"),("qqwd"),("cvgfr"),("cniop")]
Answers
Answered by
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