+ 2
Why error is coming and what is the error????đ
4 RĂ©ponses
+ 5
blooming Flowers , I assume that you are a beginner. Since some elementary basics are not taken into account in your code, I suggest that you go through the python tutorial again so that you will be familiar with it. Thank you!
+ 2
My bad!
+ 2
blooming Flowers
true is not defined and indentation error.
Python is case sensitive: true is not the same as True.
Take note.
Also any code under a conditional statement must be indented.
if "blooming" == "programmer":
print("yes")
đđąđąđđš đđĄđđČđđ„ already fixed it for you
+ 1
Unlike in other languages , Indentation in python is crucial and sensitive. Even a single whitespace can ruin the whole program.
https://code.sololearn.com/cWYzSKlDixav/?ref=app