Created
December 15, 2021 19:00
-
-
Save kumpera/fcd7027e5aa9dab81343e1267a3a8040 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
import sys | |
def my_print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False): | |
r = "" | |
for o in objects: | |
r = r + str(o) + str(sep) | |
r = r + end | |
file.write(r) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment