#!/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