Print function for Python 1 and Python 2.
Project description
print_function_py2
Usage
This package is using for print() function in Python 1 and Python 2.
How to use it
Import it by: from print_function_py2 import print3
. No any additional modules or packages will be installed.
Use it as the built-in print() function in Python 3.
>>> from print_function_py2 import print3
>>> print3("Hello", "world!", sep=", ")
Hello, world!
If you cannot install the package by pip, please download the tar.gz file and extract to sys.path(PYTHONPATH).
Suggested importing formula:
try :
exec("print3 = print")
except SyntaxError :
try :
from print_function_py2 import print3
except ImportError :
print("package print_function_py2 required")
import sys
sys.exit(1)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file print_function_py2-0.3.tar.gz
.
File metadata
- Download URL: print_function_py2-0.3.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40a96507209bc3c6d8d00947cfcb01d82b72e575cfa6095ddef2f1243ac5c308 |
|
MD5 | b256d05281c978ae74e329efc340a4b9 |
|
BLAKE2b-256 | 02c987ff7a4d9abd91dc6758667663e64ca30eb4833849758ebd2a5495699ce1 |