Python/Leetcode | 520. Detect Capital
第520题,真是一个浪漫的数字呢w
这个题目最水了,使用Python的标准库可以秒出
Talk is cheap,Show me the code
class Solution:
def detectCapitalUse(self, word: str) -> bool:
return word.upper()==word or word.lower()==word or word.title()==word
方法讲解
我的方法就是将其分为三部分,首先判断他是否全为大写字母。具体方法为将其全部转成大写字母,并和原来做比较。
lower同理。
这真是一个神奇的方法,学会用的话做题还不简简单单。。嘿嘿