diff options
author | standenboy <standenboy@StandenboyLAP.lan> | 2024-01-29 13:03:11 +0000 |
---|---|---|
committer | standenboy <standenboy@StandenboyLAP.lan> | 2024-01-29 13:03:11 +0000 |
commit | 073f1ce23d470bd85b0eb7497308f879ee214a48 (patch) | |
tree | 952fe9390276a8d7158a706aaf4231e44ebb9ff0 /comp/hw/106/3.py | |
parent | eb1a5582181bf3188f30d665a295321d36bdc795 (diff) |
added 106
Diffstat (limited to 'comp/hw/106/3.py')
-rw-r--r-- | comp/hw/106/3.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/comp/hw/106/3.py b/comp/hw/106/3.py new file mode 100644 index 0000000..3f48f70 --- /dev/null +++ b/comp/hw/106/3.py @@ -0,0 +1,9 @@ +vowels = ['a','e','i','o','u'] + +counter = 0 +word = input() +for i in word: + for j in vowels: + if j == i: + counter = counter + 1 +print(counter) |