smallest number | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

smallest number

def smallest(): num_1=float(input("Enter your first number:")) num_2=float(input("Enter your second number:")) num_3=float(input("Enter your third number:")) if (num_1<=num_2) and (num_1<=num_3): smallest=num_1 elif (num_2<=num_3) and (num_2<=num_1): smallest=num_2 else: smallest=num_3 print ("The smallest number is:",smallest) smallest() this code do not run .its show problem in 14 line. how can slove it ..what problem of my code? after run the program show that (NameError: name 'num_1' is not defined

24th Feb 2018, 4:53 PM
Kawser Hamid
Kawser Hamid - avatar
6 Answers
+ 2
I got an error stating that on line 14, there is a syntax error. This is because after the part in quotations in your print function, you're supposed to have a plus (+) sign seperating the variable and the string. Also, when printing a variable, you can only print it if it is a string, so it might help to surround the variable name in the print function in a str() function. Hope this helped!
24th Feb 2018, 5:12 PM
Faisal
Faisal - avatar
24th Feb 2018, 5:35 PM
John Wells
John Wells - avatar
+ 1
Link your code by hitting share and copy link. Followed, by pasting link into a post. OR use + Insert button on the apps post popup. Without seeing it as coded, it looks like an indentation issue.
24th Feb 2018, 5:11 PM
John Wells
John Wells - avatar
+ 1
num_1 is not defined.. please anbody run the program of your computer than give me a pic
24th Feb 2018, 5:26 PM
Kawser Hamid
Kawser Hamid - avatar
0
there is some indentation pblm... just fix that... like c, java python doesnt use {} for blocks of code... it used indented blocks... its importent to keep track of that... fix that
24th Feb 2018, 4:52 PM
sayan chandra
sayan chandra - avatar
0
indentation is ok ..this is no problem... after run the program show that (NameError: name 'num_1' is not defined
24th Feb 2018, 4:54 PM
Kawser Hamid
Kawser Hamid - avatar