Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanBaird authored Sep 1, 2022
1 parent 73d6dee commit 443d431
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Is_the_string_upper_case_kyu8.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Check if the the string is all in caps

def is_uppercase(inp):
if inp == inp.upper():
return True
else:
return False

0 comments on commit 443d431

Please sign in to comment.