标签: python indexing find
j = '<div class="jwalk"> Hello </div>' s = j.index('<div class="jwalk">') r = j.rindex('<div class="jwalk">')
此处,s将等于0,因此r也不会重复,因为子字符串不会重复。如何找到'&gt;'的位置它位于子串的末尾?
s
0
r