UNUtkarsh Narayan Tiwariincode03dev.hashnode.dev·Aug 8, 2025 · 1 min readArea Calculator made using PythonI 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=...00
UNUtkarsh Narayan Tiwariincode02dev.hashnode.dev·Aug 7, 2025 · 1 min readMy second python project.I have now built a full calculator in python that can perform four operations between two numbers- addition, subtraction, multiplication and division. x=int(input("Enter first number:")) y=int(input("enter 2nd number:")) z=input("select operation(+,-...00
UNUtkarsh Narayan Tiwariincode1calculator.hashnode.dev·Aug 7, 2025 · 1 min readSum Calculator in PythonI started learning about Python a few weeks ago. Today I learned about datatypes, typecasting, variables and the input function. Using the input function and typecasting and the print statement, i have build my most basic python project- a calculator...00