zl程序教程

您现在的位置是:首页 >  Python

当前栏目

Python 练习实例60

2023-02-18 15:28:59 时间

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例