Bootstrap

SDUWH2019-2020寒假python实训--Chp3.3

s='1-2-3'
print(s.split('-'))
list1=['1','2','3']
print('**'.join(list1))
print('+'.join(s.split()))
;