summaryrefslogtreecommitdiff
path: root/progs/a442.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a442.py')
-rw-r--r--progs/a442.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/a442.py b/progs/a442.py
new file mode 100644
index 0000000..67eda76
--- /dev/null
+++ b/progs/a442.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