[ create a new paste ] login | about

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

Python, pasted on Dec 1:
1
2
3
4
5
6
7
8
9
# -*- coding: utf-8 -*-

before = """
a
b
c
"""
after = "".join(before.split("\n"))
print after


Output:
1
abc


Create a new paste based on this one


Comments: