All pastes #739016 Raw Edit

Stuff

public text v1 · immutable
#739016 ·published 2007-10-16 20:18 UTC
rendered paste body
#!/usr/bin/env python
# -*- coding: UTF8 -*-

txt1 = "hello"
txt2 = "bye"
ntxt = (list_print(txt1), list_print(txt2))
print """%s
%s
""" % (ntxt[0], ntxt[1])

def list_print(texte):
    n_texte = " - %s - " % texte
    return n_texte