0

我正在修改satchmo(一个python在线商店项目),但是我发现我无法使用[0, 5]来获取模型中的子字符串。我在 django 字符串处理中发现类型是类 'django.utils.safestring.SafeUnicode'。

类 'django.utils.safestring.SafeUnicode' 是否支持 [0, 5] 以在 python 中获取子字符串?

4

1 回答 1

5

切片。 http://docs.python.org/tutorial/introduction.html

>>> 'foobar'[0:5]
[Out] 'fooba'

更新:当然,为什么不呢?

>>> django.utils.safestring.SafeUnicode('foobar')[0:5]
[Out] 'fooba'
于 2011-03-08T03:16:25.847 回答