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.
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.