Skip to content

Instantly share code, notes, and snippets.

@qkreltms
Last active September 2, 2018 07:21
Show Gist options
  • Select an option

  • Save qkreltms/0c75a56272b54bcb7d4347da0bd27efe to your computer and use it in GitHub Desktop.

Select an option

Save qkreltms/0c75a56272b54bcb7d4347da0bd27efe to your computer and use it in GitHub Desktop.
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