I'm just starting to learn basic python coding at the moment and I'm using a video tutorial to do so, I'm running IDLE Python 2.7.12 Shell and following along with the instructor using IDLE 3.5.0 Shell. So the issue I've come across is when I'm trying to use the split method this is coming up
>>> numbers = input("Enter your numbers, separated by commas: ")
Enter your numbers, separated by commas: 1,2,3
>>> numbers.split(",")
Traceback (most recent call last):
File "<pyshell#14>", line 1, in <module>
numbers.split(",")
AttributeError: 'tuple' object has no attribute 'split'
I can't really figure out why that is. When he runs it the numbers come back ['1','2','3']. I'm sure this is really basic but I would greatly appreciate any help or advice you can offer. Thanks.