A short function to generate print separators

I was tired of typing symbols in my scripts to act as separators in my prints.

Now using:

def separator(count=50, lines=3, symbol='='):
    separator = f"{symbol * count}" + '\n'
    separator = f"\n{separator * lines}"
    print(separator)

eg.

separator()

prints:

==================================================
==================================================
==================================================
separator(30,2)

prints:

==============================
==============================
separator(10,1)

prints:

==========
separator(100,1,'|')

prints:

||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
separator(50,5,'?')

prints:

??????????????????????????????????????????????????
??????????????????????????????????????????????????
??????????????????????????????????????????????????
??????????????????????????????????????????????????
??????????????????????????????????????????????????

Might add to my boilerplate.

links

social