Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 448 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 448 Bytes

VPrint

Tests

Verbose printing utility for python.

Check it out on pypi.org!

Installation and usage

pip install verbose-print==0.0.1

import verbose_print.vprint as vp

def main():
    v = True
    e = "!"
    vp.vprint("Hello", "World", verbose=v, end=e)

if __name__ == "__main__":
    main()