list1 = ["name1", "info1", 10] list2 = ["name2", "info2", 30] list3 = ["name3", "info3", 50] MASTERLIST =
The print() function returns None. You are trying to index None. You can not, because 'NoneType' object is not subscriptable.
print()
None
'NoneType' object is not subscriptable
Put the [0] inside the brackets. Now you're printing everything, and not just the first term.
[0]