๐ My Python Portfolio | Mini Projects and Learning Journey
Hi there! ๐
I'm Ishant, a student learning Python and AI Tools.
Here youโll find my Python projects and experiments.
- Python (Loops, Functions, File Handling)
- MS Excel with AI
- Video & Photo Editing
- Data Entry & PowerPoint
def add(a,b): return a+b
def sub(a,b): return a-b
def mul(a,b): return a*b
def div(a,b): return a/b
print("Simple Calculator")
a = float(input("Enter first number: "))
b = float(input("Enter second number: "))
print("Addition:", add(a,b))