Sep-13-2024, 07:03 AM
When I do the following it works:
Can anyone please clarify the problem for me? Gracias.
"A tree in the park".split()
Output:['A', 'tree', 'in', 'the', 'park']
But when I do the following, it doesn't work (returns an error):sentence = ["A tree in the park"] print(sentence.split())The error is as follows:
Error:Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
print(sentence.split())
AttributeError: 'list' object has no attribute 'split'
The following works though:sentence = "A tree in the park" print(sentence.split())The output is as below:
Output:['A', 'tree', 'in', 'the', 'park']
My hunch is that the split command works only on strings and not lists (that's what I got from the error message, an AttributeError). However, I was taught string manipulation along with lists and I assumed that all commands/built-in functions work for both strings and lists.Can anyone please clarify the problem for me? Gracias.