Question title explains it all. Here's a sample data frame:
df_sample = pd.DataFrame({'page': {1225: 'https://nextgrowthlabs.com/en/know-about-the-app-screenshot-guidelines-of-the-apple-app-store/',
1229: 'https://nextgrowthlabs.com/en/know-about-the-app-screenshot-guidelines-of-the-apple-app-store/',
241: 'https://nextgrowthlabs.com/learn-everything-about-app-screenshot-size-guidelines/',
1175: 'https://nextgrowthlabs.com/en/tracking-user-level-interactions-with-bigquery/',
141: 'https://nextgrowthlabs.com/may-2022-google-play-update/'}})
df_sample
Now I want to scrape words from title and words from body of the web pages found through these URLs and add them both to separate columns in this same data frame. Can you at least point me in the right direction?