Answer:
Design a web page
Explanation:
It is easier html is a very easy language to learn css it should take ou about a week for a solid website
Answer:
How to write Python Program to find Volume and Surface area of Sphere with example. Before we step into the Python Program to find Volume and Surface Area of Sphere, Let see the definitions and formulas
Surface Area of Sphere
A Sphere looks like a basketball or we can say the three-dimensional view of a circle. If we know the radius of the Sphere then we can calculate the Surface Area of Sphere using formula:
Explanation:
Answer:
total = 0
hamburgers = int(input("Enter the number of hamburgers: "))
fries = int(input("Enter the number of fries: "))
drinks = int(input("Enter the number of drinks: "))
total = (hamburgers * 2.0) + (fries * 1.5) + (drinks * 1.00)
print("The total cost of the order is: " + str(total))
Explanation:
- Ask the user for the inputs
- In order to find the total cost, multiply each order cost with the number of orders. Then sum the each result.
- Print the total cost