Decision Making in Python
Decision making is fundamental in making a program. All programming languages provide in-built structure for it and Python is not exception. In this post, I will explain decision making using if else statements. Syntax if expression: Example of expressions x > 4 x < 4 x == 4 In Python you will write if […]
Decision Making in Python Read More »