Last active
October 22, 2019 19:05
-
-
Save correl/0f24b07e13e9d06facb2b7624e2a00f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function | |
from owotrans import owo | |
try: | |
import __builtin__ | |
except ImportError: | |
# Python 3 | |
import builtins as __builtin__ | |
print_builtin = __builtin__.print | |
def owoprint(value="", *args, **kwargs): | |
return print_builtin(owo(value), *args, **kwargs) | |
__builtin__.print = owoprint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment