Python 62

Python 100 [Python 100] Python 100

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

sStr1 = 'abcdefg'
sStr2 = 'cde'
print sStr1.find(sStr2)

2

Python 100 [Python 100] Python 100