So guys here is my situation.
There is text file.Which contains some strings.They are all comma separated.
What i wanna do is just read the text file and print individually those strings which are comma separated.
Suppose the text file contains:
dog,cat,bird,good,bad,blah,blah,blah etc....
The python script should print
dog
cat
bird
good
bad
blah
etc
etc
etc
...
...
..