import pinyin def getStrAllAplha(str): return pinyin.get_initial(str, delimiter="").upper() def getStrFirstAplha(str): str=getStrAllAplha(str) str=str[0:1] return str.upper() str = '你好在哪来' print(getStrAllAplha(str)) print(getStrFirstAplha(str)) 1. 2. 3. 4. 5. 6. 7...
利用python对字符串处理,取中间的字符 比如str = "(sdadsafsfsdfdgfdghfhfghgjg)" 取出括号里面的内容:str.strip()[1:-1]