Проблема, с которой я столкнулся, связана с выводом циклов for. В настоящее время у меня есть 3 из них, и я получаю следующий вывод:
t
t
t
p
p
p
s
s
s
Вывод, для которого я снимаю:
t,p,s
t,p,s
t,p,s
Вот пример кода
# Outputs First Product
title_print = print(title[0].text.strip())
price_print = print(price[0].text.strip())
shipping_print = print(shipping[0].text.strip())
# Outputs All Products
for t in title:
print(t.text.strip())
for p in price:
print(p.text.strip())
for s in shipping:
print(s.text.strip())
Спасибо за ваше время!