我有一个字符串
abc = 'tea,coffee'
想要拆分为(“茶”,“咖啡”)
我尝试拆分,但结果在前面和最后显示为双引号
我得到的结果为"tea','coffee"
答案 0 :(得分:0)
#given string
abc = 'tea,coffee'
#splitting into array
result = abc.split(',')
#making tuple
tuple(result)
#printing result
print(result)
完成!