Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
#!/usr/bin/env python3
|
|
#title :4-6.py
|
|
#description :Opdracht 4.6 - For, If & vowels
|
|
#author :Marcel Haazen
|
|
#email :marcel@haazen.xyz
|
|
#date :21-09-2019 - 23:33
|
|
#version :0.1
|
|
#usage :python3 4-6.py
|
|
#notes :
|
|
#python_version :3.7.4
|
|
#==============================================================================
|
|
s = "Guido van Rossum heeft programmeertaal Python bedacht."
|
|
vowels = "aeiou"
|
|
for letter in s:
|
|
if letter in vowels:
|
|
print(letter)
|