Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of thing10

thing10

thing10 has asked 0 questions and find answers to 6 problems.

Stats

70
EtPoint
8
Vote count
0
questions
6
answers

About

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)