if Statements | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

if Statements

"you should create it as a separate file and run it" please i don't understand what this means does it mean i should end the if statement before the second un-indented line is written

12th Jan 2018, 1:56 AM
ifetola Agbesanwa
ifetola Agbesanwa - avatar
3 Answers
+ 2
It has nothing to do with if statements. Short programs you can run from the prompt. With longer programs it is more easy to put them in a file, save it, and then run that file. When you use if statement your program is likely to get longer. That is probably why they made the remark.
12th Jan 2018, 6:00 AM
Paul
Paul - avatar
+ 1
@Paul Jacobs I see, thank you Paul
12th Jan 2018, 10:15 AM
Spider38E
Spider38E - avatar
- 1
I think what it mean is sometimes the if statement gets very long so if you use separate files inside of it, it will make it easier to read. import file.py if x==1 call something from file.py else call otherthing from file.py So you import what you need and then fetch the classes or functions that you need in the if statement. I am also learning Python so does it make any sense?
12th Jan 2018, 3:42 AM
Spider38E
Spider38E - avatar