17 lines
250 B
Python
Executable File
17 lines
250 B
Python
Executable File
#!/usr/bin/env python2
|
|
from __future__ import print_function
|
|
|
|
print('hello')
|
|
print(u'hello')
|
|
print(a, file=sys.stderr)
|
|
|
|
# output
|
|
|
|
|
|
#!/usr/bin/env python2
|
|
from __future__ import print_function
|
|
|
|
print("hello")
|
|
print(u"hello")
|
|
print(a, file=sys.stderr)
|