checkio Secret Message

题目:
Ever tried to send a secret message to someone without using the postal service? You could use newspapers to tell your secret. Even if someone finds your message, it’s easy to brush them off as paranoid and as a conspiracy theorist. One of the simplest ways to hide a secret message is to use capital letters. Let’s find some of these secret messages.

You are given a chunk of text. Gather all capital letters in one word in the order that they appear in the text.

For example: text = “How are you? Eh, ok. Low or Lower? Ohhh.”, if we collect all of the capital letters, we get the message “HELLO”.

Input: A text as a string (unicode).

Output: The secret message as a string or an empty string.

Example:

find_message(('How are you? Eh, ok. Low or Lower? ’
‘Ohhh.’)) == ‘HELLO’
find_message(‘hello world!’) == ‘’
find_message(‘HELLO WORLD!!!’) == ‘HELLOWORLD’

链接:
https://py.checkio.org/en/mission/secret-message/
代码:

def find_message(message: str) -> str:
    x = []
    for i in message:
        if i.isupper():
            x.append(i)
            # your code here
    return ''.join(x)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值