django 如何比较字符串长度
1 回答
元芳怎么了
TA贡献1798条经验 获得超7个赞
django是python的一个web框架,那么比较长度就的用python来完成,以下有两个字符串:
1 2 3 4 5 6 7 | str1='123' str2='12345' # 用len()内置函数来取字符串长度 if len(str1) < len(str2): print 'less' else: print 'than' |
- 1 回答
- 0 关注
- 1142 浏览
添加回答
举报
0/150
提交
取消