Python 练习实例60

python 练习实例60

python 编程100例python 编程100例

题目:计算字符串长度。  

程序分析:无。

实例(python 2.0+):

#!/usr/bin/python
# -*- coding: utf-8 -*-
 
sstr1 = 'strlen'
print len(sstr1)

以上实例输出结果为:

6

python 编程100例python 编程100例

下一节:python 练习实例61

python 编程100例

相关文章