xxxxxxxxxx
elems_list = soup.findAll('p')
start_pos = 0
for e in elem_list:
end_pos = len(e)
if e.startswith(substring, start_pos, end_pos)
elem_found = True
elem = e
break
if elem_found:
print("Element starting with ", substring, " found: ",e)