Given the following pandas DataFrame called salaries_df, wri…

Given the following pandas DataFrame called salaries_df, write one line of code that returns Josh’s average salary over the three years.  The following table represents salaries_df, which shows each person’s salary for a given year.  1998 1999 2000 John 22000 23000 13000 Jack 11000 14000 16000 Josh 19000 22000 26000

What will be printed out when the following code is executed…

What will be printed out when the following code is executed? from bs4 import BeautifulSouphtml_string = “”” Ryan’s dog page! Ryan’s page of … Dogs! Val Also Val Best dog ever! Val Also Val Another Val”””soup = BeautifulSoup(html_string, “html.parser”)tag = soup.find(“ul”)print(tag.find(“li”).text)