Beispiel #1
0
def spaces(nb):
    assert(nb >= 0)
    # TODO: faster version ?
    msg = ""
    while nb > 0:
        msg += SPACE_CHARACTER
        nb = nb - 1
    return text(msg)
Beispiel #2
0
def space():
    return text(SPACE_CHARACTER)