anytime I try running a program and I use user_input == "add" its always writing error ain't running is it wrng | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

anytime I try running a program and I use user_input == "add" its always writing error ain't running is it wrng

11th Sep 2016, 1:22 PM
Stephen Antai
Stephen Antai - avatar
2 Answers
+ 2
user_input = "add"
11th Sep 2016, 8:59 PM
Mmt Gaming
Mmt Gaming - avatar
+ 1
Everything's ok. You just made a mistake. To ASSIGN a VALUE to a VARIABLE, you must use a single equal sign. BUT, you used two of them. We only use two of them to compare somthing to somthing else. For exemple with the "if statements" to read the lines of codes below ONLY if an first value is equal to another. exemple: a=4 if a==4: print("a is equal to 4")
11th Sep 2016, 1:32 PM
Alexandre Balea
Alexandre Balea - avatar