My code looks like :
# -*- coding: utf-8 -*- print [\"asdf\", \"中文\"] print [\"中文\"] print \"中文\"
The output in the Eclipse console is ver
The first two are using the __repr__ of the strings, the last one is using the __str__ method
__repr__
__str__
You could use
print ", ".join(["asdf", "中文"])