0
Is their a more interactive python learning app because I am having a hard time under standing every thing exactly. thanks👍
4 Antworten
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
0
not only if statements it is all it is hard to understand without a lot explanation
0
but thanks for the help
0
ask lots of questions. That's what we are here for.. Keep them coming.