我正在修改satchmo(一个python在线商店项目),但我发现我不能使用[0,5]来获取模型中的子串。我发现django字符串处理中的类型是'django.utils.safestring.SafeUnicode'。
类'django.utils.safestring.SafeUnicode'是否支持[0,5]来获取python中的子字符串?
答案 0 :(得分:4)
切片。 http://docs.python.org/tutorial/introduction.html
>>> 'foobar'[0:5]
[Out] 'fooba'
更新:确定,为什么不呢?
>>> django.utils.safestring.SafeUnicode('foobar')[0:5]
[Out] 'fooba'