McAfee, Norton(totally overprotective tho), if you have a Chromebook Chrome OS(even more protective), Windows Defender on Win 10...
Answer:
This looks great so far!
Explanation:
Great job on the code, keep up the amazing work!
The answer is WordArt, I have to type out this much because Brainly won't let me answer anything under 20 characters. Good luck.
def CountVowels(epsilon):
countNum = 0
for x in range(len(epsilon)):
letter = epsilon[x]
if letter.lower() in "aeiou":
countNum += 1
return countNum
def ExtractOdds(zeta):
result = ""
for x in range(len(zeta)):
if x % 2 == 1:
result += zeta[x]
return result
sentence_A = input("Enter a sentence: ")
sentence_B = input("Enter a sentence: ")
print(CountVowels(sentence_A))
print(ExtractOdds(sentence_B))
I hope this helps!