Exemplo n.º 1
0
def beauty3(value):
    return title_beauty(value, 10)
Exemplo n.º 2
0
def beauty(value, arg):
    """Removes all values of arg from the given string"""
    if value.strip() == '':
        return title_beauty(arg, 8)
    else:
        return title_beauty(value, 8)
Exemplo n.º 3
0
def beauty2(value, arg):
    if value.strip() == '':
        return title_beauty(arg, 38)
    else:
        return title_beauty(value, 38)