diff options
Diffstat (limited to 'progs/a366.py')
-rw-r--r-- | progs/a366.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a366.py b/progs/a366.py new file mode 100644 index 0000000..4d08103 --- /dev/null +++ b/progs/a366.py @@ -0,0 +1,5 @@ +def check(string):
+ if len(set(string).intersection("AEIOUaeiou"))>=5:
+ return ('accepted')
+ else:
+ return ("not accepted")
\ No newline at end of file |