Project 1.1 Find square root. Import the math library Prompt the…

Question Answered step-by-step Project 1.1 Find square root. Import the math library Prompt the… Project 1.1 Find square root.  • Import the math library• Prompt the user to enter a number using the input function• Read the input the user entered• Cast the input the user entered and use the square root function found in the math library to calculate the square root.• Display the result in a formatted output such as, “The square root of num1 is X.”• Save your file as square.pyProject 1.2 Convert feet to meters• Prompt the user to enter an integer number that represents number of feet• Read the input user enter• Cast the input the user entered and convert it to meters• Display the result in a formatted output• Save your file as feet_to_meters.py    The conversion factor for feet to meters is 0.305Project 1.3 Print address.  • Prompt the user to enter his first and last name and store them in separate variables;• Prompt the user to enter street address line, city, zip, and state, and store them in variables• Format the entry and display it as follows.  ======================================First name Last nameStreet AddressCity, State, Zip code======================================• Save your file as address.py   Project 1.4 Calculate tip, tax, and sales total          Assume that tip is 18%, and tax rate is 7%• Prompt the user to enter the charge of a meal• Calculate the tip• Calculate the tax• Calculate the total cost• Display the result as:        Food  xxx    Tip        xxx    Tax       xxx    Total     xxx          • Save your file as receipt.py  Computer Science Engineering & Technology Python Programming Share QuestionEmailCopy link Comments (0)