可以先用find查找到这个字符的位置,然后再根据位置+1访问下一个字符,例如:
str1 = "hello,python" i = str1.find('e') str1[i+1]
这样就得到了字符'l'