当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

从字符串 Python 中提取大写和小写字符

  1. string = "asdfHRbySFss"
  2. uppers = [l for l in string if l.isupper()]
  3. print (''.join(uppers))
  4. lowers = [l for l in string if l.islower()]
  5. print (''.join(lowers))

Output:

  1. HRSF
  2. asdfbyss