+ 2
Basic Python Calculator
I have another errorâčïž num1 = float(input('Enter a number:")) It says I have an EOFError...how to fix that?đ
3 RĂ©ponses
+ 1
You have two 'equals sign in it.
+ 2
== is an equality operator and checks to see if the two things are the same
= is an assignment operator used to assign variables to values
0
oh now i feel stupid thanks guys