字符串有字母数字组成,长字符串长度大于5小于500000,短字符串长度大于0小于5,求短字符串首次在长字符串出现的位置。

#!/usr/bin/python
#-*- coding:utf-8 -*-
#键盘输入一长一短两个字符串,可以算出短字符在长字符第一次出现的位置
while True:
    try:
        long_str = raw_input().strip()
        short_str = raw_input().strip()
        #print long_str," ",short_str
        if len(long_str) < 5 or len(long_str) > 500000 or len(short_str) >5 or len(short_str) == 0:
            raise Exception
        index = long_str.find(short_str) + 1
        print index
        break
    except Exception:
        print "5<长字符串<500000,0<短字符串<5"
 

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐