Skip to content

if else in python

A Conditional Statements is a statement that checks for a Boolean condition. It decides whether the block of statement will execute or not. If the condition evaluates to TRUE a section of code will execute. There are various types of conditional statements in Python, let’s discuss one by one along with their syntax. Basic Syntax of Conditional Statements [conditional] : Any condition based on a combination of one or more… Read More »Conditional Statements in Python

Conditional Statements in Python