Area Calculator made using Python
Aug 8, 2025 · 1 min read · 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=...
Join discussion