Last active
September 2, 2018 07:21
-
-
Save qkreltms/0c75a56272b54bcb7d4347da0bd27efe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| def return_uppercase(str): | |
| return "".join(re.compile('[A-Z]').findall(str)) # isUpper()사용하면 더 | |
| print(return_uppercase(input())) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment