[ create a new paste ] login | about

Link: http://codepad.org/tuHBxff5    [ raw code | output | fork ]

slevy1ster - Python, pasted on Nov 8:
1
2
3
4
5
line="1,2,3\n4,5,6\n7,8,9"
clean = line.replace(',','')
words = clean.split();
for nums in words:
    print nums


Output:
1
2
3
123
456
789


Create a new paste based on this one


Comments: