Search words vowels
Sign in to test your solution.
def geef_klinkers_in_woord(woord: str) -> str:
klinkers_in_woord = ""
for letter in woord:
if letter in "aeiou":
klinkers_in_woord += letter
return klinkers_in_woord
def zoek_klinker_woorden(invoer_bestandsnaam: str, uitvoer_bestandnaam: str) -> None:
...
# zoek_klinker_woorden("wdb1.txt", "found1.txt")
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.
Python sandbox
This window allows you to run Python code without installing a thing. The code you write here is not automatically submitted to Dodona.