Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 375 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 375 Bytes

PrintBlock

Enables and disables printing out in python

Just copy-paste it to start of your code and enjoy!

printBlock(True) to block all prints bellow

printBlock(False) to enable printing again

print("okay")

printBlock(True)

print("This is not printing")
print("this is not printing too")

printBlock(False)

print("This is printing")

By Will-Bee