Is their a more interactive python learning app because I am having a hard time under standing every thing exactly. thanks👍 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is their a more interactive python learning app because I am having a hard time under standing every thing exactly. thanks👍

7th Jul 2017, 3:51 PM
Jefferson
4 Answers
0
What part aren't you understanding? if statements are pretty simple really. if this happens: do this else: do this instead example- if 3<2: print("Three is less than two") else: print("Three is greater than two") This is a simple if statement. It is checking if 3 is < (less than) 2 .. if it is True, it runs the first block of code. if it is False, it moves on. I this case to the else statement and runs that block of code instead
7th Jul 2017, 4:05 PM
LordHill
LordHill - avatar
0
not only if statements it is all it is hard to understand without a lot explanation
7th Jul 2017, 5:28 PM
Jefferson
0
but thanks for the help
7th Jul 2017, 5:28 PM
Jefferson
0
ask lots of questions. That's what we are here for.. Keep them coming.
7th Jul 2017, 6:15 PM
LordHill
LordHill - avatar