본문 바로가기
프로그래밍 문제/[Python] CheckIO

[CheckIO/Scientific-Expedition] Secret Message

by Physics 2024. 4. 7.
728x90

1. Problem: https://py.checkio.org/en/mission/secret-message/
2. My solution

def find_message(message: str) -> str:
    # your code here
    dummy = '';
    for char in list(message):
        if char.isupper(): dummy+=char
    
    return dummy
728x90

댓글