标签: python string split
例如,我的字符串为:
str = 's3://files.production/object/Image/110/image.jpg'
,我想将其拆分为:
's3://files.production'和'object/Image/110/image.jpg'。
's3://files.production'
'object/Image/110/image.jpg'
我想知道是否有任何方便的方法。