8 lines
82 B
Python
8 lines
82 B
Python
import six
|
|
from six import PY3
|
|
|
|
if six.PY3:
|
|
print("3")
|
|
if PY3:
|
|
print("3")
|