IAsistemofinteres commited on
Commit
7c0b54c
1 Parent(s): eb2ff9f

Upload rprint.py

Browse files
Files changed (1) hide show
  1. rprint.py +13 -0
rprint.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding: utf-8
2
+
3
+ """
4
+ custom print and log functions
5
+ """
6
+
7
+ __all__ = ['rprint', 'rlog']
8
+
9
+ def rprint(*args, **kwargs):
10
+ print(*args, **kwargs)
11
+
12
+ def rlog(*args, **kwargs):
13
+ print(*args, **kwargs)