python关于字符串的问题
发布网友
发布时间:2022-05-31 03:14
我来回答
共3个回答
热心网友
时间:2023-10-08 19:45
find(...)
S.find(sub [,start [,end]]) -> int
Return the lowest index in S where substring sub is found,
such that sub is contained within s[start,end]. Optional
arguments start and end are interpreted as in slice notation.
Return -1 on failure.
直接用a.find('he') 或者 a.find('he',0,len(a)) 就可以了
不能用beg=0, end=len(a),这里表示给beg和end赋值,可是find参数里没有这两个,find后面那两个是默认的参数,不给也可以的
热心网友
时间:2023-10-08 19:46
a.find('he', 0, len(a)),这样就好了
字符串好像目前不支持keyword argument
热心网友
时间:2023-10-08 19:46
find无指名参数。
请使用:
a.find('he', 0, len(a))