Files
30-seconds-of-code/test/is_upper_case/is_upper_case.py
Rohit Tanwar 385bf72a3e readme-script
2018-02-20 22:42:11 +05:30

2 lines
53 B
Python

def is_upper_case(str):
return str == str.upper()