Area Calculator made using Python
I made a project in python that calculates the area of a square, circle, rectangle or triangle.
print("WELCOME TO AREA CALCULATOR")
print("YOU CAN CALCULATE AREA OF SQUARE, CIRCLE, RECTANGLE,TRIANGLE")
x=input('which shape?')
if x == 'square':
y=...
code03dev.hashnode.dev1 min read