Blog Details

img
Data Science

How do you do an if in Python

Spoke Right / 16 Nov, 2023

Python If statement is a conditional statement, which can be used in various forms to check a condition or multiple conditions and to perform the specified action or actions, if the particular condition is true. These are:

  • if statement
  • if-else statement
  • nested if statement

if statement:

If statement is used to perform an action if a single condition is true.

Syntax:

if (condition):

Execute this code if condition is trueelse nothing to be executed

Example:

a = "231"
if (a == "231"):
   print a

0 comments

Warning: PHP Startup: Unable to load dynamic library 'imagick.so' (tried: /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so: cannot open shared object file: No such file or directory), /usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so (/usr/local/lib/php/extensions/no-debug-non-zts-20210902/imagick.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0