summaryrefslogtreecommitdiff
path: root/progs/a363.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a363.py')
-rw-r--r--progs/a363.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/a363.py b/progs/a363.py
new file mode 100644
index 0000000..e1cd792
--- /dev/null
+++ b/progs/a363.py
@@ -0,0 +1,7 @@
+def word_len(s):
+ s = s.split(' ')
+ for word in s:
+ if len(word)%2==0:
+ return True
+ else:
+ return False \ No newline at end of file