本文介绍了Python 2.X 在字符串周围添加单引号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
目前要在字符串周围添加单引号,我想出的最佳解决方案是制作一个小包装函数.
Currently to add single quotes around a string, the best solution I came up with was to make a small wrapper function.
def foo(s1):
return "'" + s1 + "'"
有没有更简单的 Pythonic 方法来做到这一点?
Is there an easier more pythonic way of doing this?
推荐答案
关于:
def foo(s1):
return "'%s'" % s1
这篇关于Python 2.X 在字符串周围添加单引号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!