Dec-30-2017, 11:03 AM
find_all will return list of objects. you need to iterate over it and print it
for my_tag in soup.find_all(class_="_2lzr _50f5 _50f7"): print(my_tag.text)or use list comprehension
print([my_tag.text for my_tag in soup.find_all(class_="_2lzr _50f5 _50f7")])