print('All characters in your string are lowercase') ... statement [c for c in s if c.islower()] to create a list of lowercase letters in a given string s .
確定! 回上一頁