[ create a new paste ] login | about

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

CarlFK - Python, pasted on Nov 8:
1
2
3
4
5
6
s = "hello world"
for c in s:
    if c==' ':
        print "</br>"
    else:
        print c,


Output:
1
2
h e l l o </br>
w o r l d


Create a new paste based on this one


Comments: