@Mukund-q3f

Very nice lecture SIr. MANY Thanks. WITH WARM REGARDS.

@ishtiaqsiddiqui5463

Actually i have gone through your JWT Lectures. Where in the End you told that if we want you to perform practical in which language. Have you Made any vedio on that. Using C#? Please reply actually i badly want that lecture. I have so many confusion regarding JWT.

@aabidhussain9632

react jo aapne padhya hai bhai wah bahut hi accha se samjh aaya mujhe lekin , jo source code hai ya notes hai  wh nahi mil rha hai 
apka website band hai learning never end wala

@AlliedGaming-yc6nu

def add(x, y):
    return x + y

def subtract(x, y):
    return x - y

def multiply(x, y):
    return x * y

def divide(x, y):
    if y == 0:
        return "Error! Division by zero."
    else:
        return x / y

print("Simple Calculator")
print("1. Addition")
print("2. Subtraction")
print("3. Multiplication")
print("4. Division")

while True:
    choice = input("Enter your choice (1/2/3/4): ")
    
    if choice in ('1', '2', '3', '4'):
        num1 = float(input("Enter first number: "))
        num2 = float(input("Enter second number: "))

        if choice == '1':
            print(num1, "+", num2, "=", add(num1, num2))

        elif choice == '2':
            print(num1, "-", num2, "=", subtract(num1, num2))

        elif choice == '3':
            print(num1, "*", num2, "=", multiply(num1, num2))

        elif choice == '4':
            print(num1, "/", num2, "=", divide(num1, num2))
        
        next_calculation = input("Let's do next calculation? (yes/no): ")
        if next_calculation.lower() != 'yes':
            break

    else:
        print("Invalid Input")