I scraped data from a site with beautifulsoup. The same tag as time and update date. That's why I want to separate them and delete "Update:" string. I couldn't imagine how.
The strings I want should be like this:
a="4 July 2019 Friday 07:52"
b="04.07.2019 07:52"
publishTime=source.find("div", attrs={"class":"textInfo"}).text
print(publishTime.strip())
4 July 2019 Friday 07:52
Update: 04.07.2019 07:52