Files
python-uncompyle6/test/simple_source/stmts/05_unicode_literals.py
2017-12-05 13:28:26 -05:00

9 lines
201 B
Python

from __future__ import unicode_literals
# __future__ unicode_literals changes the way we need to print
# the below
# In Python assembler code "a" is u"a" and b"a" is "a".
a = "a"
ba = b"a"
bb = b"b"