Warning! It seems that you are using Dodona within another webpage, so not everything may work properly. Let your teacher know so that he can solve the problem by adjusting a setting in the learning environment. In the meantime, you can click this link to open Dodona in a new window.
Warning! The page was not fully loaded, probably because of a network issue. It could be that not all functionalities work as expected. Please try reloading the page.
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")