标签: python
我想将str.find()返回给除str.find之外的变量,但我不知道如何去做。
答案 0 :(得分:1)
您使用=进行分配。
=
mystr = '123.456' dotpos = mystr.find('.')
现在,变量dotpos将包含3。
dotpos
3