Sunday, August 27, 2017

Python - Beginning Programming

Decision Making
If Else;
Open your IDE say Pycharm.
write:
x=5
 y=10
if x>y:
print("This is wrong")
else:
print("This is right")

You can try this of your own. 




  

No comments:

Post a Comment