I'm tryng to read sentence for sentence from an input with python:
sentences = raw_input("Insert some sentences here: ")
(For example: Hello, my name is Mattia)
How i can read sentence for sentence?
For example:
1 = "Hello"
2 = ","
3 = "my"
4 = "name"
5 = "is"
6 = "Mattia"