我的代码中一直出现以下错误:
itb.split(" ")
AttributeError: 'list' object has no attribute 'split'
我的代码如下:
itb = load_data(input("Please enter the name of your data file: ").lower())
for i in itb:
if "://" in i[1] and '2015-11-16' == i[2][:10]:
itb.split(" ")
print (i[1])
如何解决这个问题的任何见解都会很棒!