python字符串查找的四種方法

python 字符串查找有4個方法,1 find,     2 index方法,3 rfind方法,   4 rindex方法。python 1 find()方法:查找子字符串,若找到返回從0開始的下標值,若找不到返回-1code   info = 'abca'字符串 print info.find('a')##從下標0開始,查找在字符串裏第一個出現的子串,返回結果:0方法   info = 'a
相關文章
相關標籤/搜索