Python 100例-60 Python 100例-59 Python 100例-61 实例60 题目: 计算字符串长度。 程序分析: 无。 程序源代码: #!/usr/bin/python # -*- coding: UTF-8 -*- sStr1 = 'strlen' print len(sStr1) 以上实例输出结果为: 6 Python 100例-59 Python 100例-61