Answer:
length = int(input("Enter a length "))
width = int(input("Enter a width "))
area = length * width
print("The area is " + area)
Answer:
Click DATA, Look for "Sort & Filter", Click Filter Box (right above "Sort & Filter"). Done.
Answer:
#
Explanation:
I have notes on it we learned it in 8th
I added a decimal format to keep all decimals within the hundredths place. I also changed the calcTip method to void and the argument to a double. Void means the method doesn't return anything and changing bill to type double let's us pass numbers with decimals to the calcTip method. I hope this helps!