标签: python python-2.7
我想将uncicode变量封装在引号中。
q = u'turtle' print(q) prints turtle
目标是将turtle括在带引号的unicode类型内,使其看起来像q = u'"turtle"'或打印为"turtle",但仍保留其unicode类型。
turtle
q = u'"turtle"'
"turtle"
我该如何插入?