Advertisement
here2share

# debug_print.py

Oct 7th, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. # debug_print.py
  2.  
  3. testrun=True
  4. def p(*z):
  5.     if testrun:
  6.         print ("{} "*len(z)).format(*z)[:-1]
  7. #
  8. p(123,"abc",None,'',True,False)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement