]> git.phdru.name Git - m_lib.git/blobdiff - m_lib/opstring.py
Use print function for Py3 compatibility
[m_lib.git] / m_lib / opstring.py
index e01a043786186c3b0ea9c9fcf033871be5b6a679..8bd864acb0f3de2c07bf5b3047854c16cfb66b8e 100755 (executable)
@@ -7,6 +7,7 @@
 #
 
 
+from __future__ import print_function
 from string import *
 
 
@@ -143,14 +144,14 @@ def koi2win(s, errors = "strict"):
 #
 
 def test():
-   print "bin(0x6) =", bin(0x6)
-   print "bin(0xC) =", bin(0xC)
+   print("bin(0x6) =", bin(0x6))
+   print("bin(0xC) =", bin(0xC))
 
-   print "'Test' left-padded :", LeftPad("Test", 20)
-   print "'Test' right-padded:", PadCh("Test", '*', 20)
-   print "'Test' centered    :", CenterCh("Test", '=', 20)
+   print("'Test' left-padded :", LeftPad("Test", 20))
+   print("'Test' right-padded:", PadCh("Test", '*', 20))
+   print("'Test' centered    :", CenterCh("Test", '=', 20))
 
-   print "'Олег':", koi2win(win2koi("Олег"))
+   print("'Олег':", koi2win(win2koi("Олег")))
 
 if __name__ == "__main__":
    test()