thing10

140
reputation
1
9

A python coder that likes to code random algorithms and "apps" and functions, like this one:

def print_v2(value, sep=' ', end='\n', case='any', file=sys.stdout, flush = False):
    if case == 'any':
        print(value, sep=sep, end=end, file=file, flush=flush)
    elif case == 'lowercase':
        print(value.lower(), sep=sep, end=end, file=file, flush=flush)
    elif case == 'uppercase':
        print(value.upper(), sep=sep, end=end, file=file, flush=flush)