找到大寫字母

#解法一 def capitals(a): for index,s in enumerate(a): #isupper 如果字符串中都是大寫,返回True,如果有一個小寫,返回False if s.isupper(): print(index) capitals('anMIE') #解法二 def
相關文章
相關標籤/搜索