python split()

import re

a='Beautiful, is; better*than\nugly'

x= re.split(',|; |\*|\n',a)

print(x)
['Beautiful', ' is', 'better', 'than', 'ugly']



'御景龙庭别墅'.strip('别墅')
Out[28]: '御景龙庭'
posted @ 2022-08-19 22:59  luoganttcc  阅读(8)  评论(0编辑  收藏  举报