二、string.find()函数用法 1.返回字符串s1在s中的位置,如果没有找到,则返回-1 position=s.find(s1); 2.返回任意字符s1在s中第一次出现的位置,s1为字符,不能为字符串 ‘a’ “a”都可以 position=s.find_first_of(s1); 3.从字符串s下标为a开始查找字符串s1,返回起始位置 s.find(s1,a); 查找不...