Python 练习实例62

python 练习实例62

python 编程100例python 编程100例

题目:查找字符串。  

程序分析:无。

程序源代码:

#!/usr/bin/python
# -*- coding: utf-8 -*-

sstr1 = 'abcdefg'
sstr2 = 'cde'
print sstr1.find(sstr2)

以上实例输出结果为:

2

python 编程100例python 编程100例

下一节:python 练习实例63

python 编程100例

相关文章