对于我的作业,我必须将列表拆分两次:我需要使用“+”从输入行拆分地址字符串,然后在“,”处拆分结果列表的最后一部分</p>
in_file = open('yelp-short.txt')
def parse_line(text_file):
a = text_file.strip('\n')
b = a.split('+')
c = b.split(',')
print c
我收到错误:“列表”对象没有属性“拆分”
我可以使用哪些其他方法来做到这一点?