Python 字符串String find() 方法```py #!/usr/bin/python str1 = "this is string example....wow!!!"; str2 = "exam"; print str1.find(str2) print str1.find(str2, ...
確定! 回上一頁