Skip to content

Commit cec971e

Browse files
committed
Add task7 files 7-main.py and 7-islower.py
1 parent 9b275d9 commit cec971e

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/python3
2+
def islower(c):
3+
if ord(c) >= 97 and ord(c) <= 122:
4+
return True
5+
else:
6+
return False

0x01-python-if_else_loops_functions/7-main.py

100644100755
File mode changed.
Binary file not shown.

0 commit comments

Comments
 (0)