It first happened when following a tutorial for a basic calculator
Now whenever I try to put anything at all, it always just gives out "101"
I even went back to previous things i'd coded, and running them now gives "101"
num1 = float(input("Enter first number: "))
op = input("Enter operator: ")
num2 = float(input("Enter second number: "))
if op == "+":
print(num1 + num2)
elif op == "-":
print(num1 - num2)
elif op == "/":
print(num1 / num2)
elif op == "*":
print(num1 * num2)
else:
print("Invalid operator")
---------
101Process finished with exit code 0Now whenever I try to put anything at all, it always just gives out "101"
I even went back to previous things i'd coded, and running them now gives "101"
