AgerNic.com
WEB DEVELOPER SITE, HTML, CSS, PHP, SQL

Python If .. Else


Python Tutorial » Python If .. Else

Python supports logical conditions from mathematics as:

1. Equals: a == b
2. Not Equals: a != b
3. Greater than: a > b
4. Less than: a < b
5. Greater than or equal to: a >= b
6. Less than or equal to: a <= b
These conditions can be used in several ways, most commonly in "if statements" and loops.

Example: of "if" statement
x = 320
y = 42

if x > y:
  print("x greather than y")

Output:
y is greater than x


Else statemnt - example



Example: Dictionaries cannot have two items with the same key
x = 320
y = 42

if x > y:
  print("y is greather than x")
else:
  print("x is greater than y")
Output:
x is greater than y


Elif statement - example


Example: elif is short for else if statement. It allows us to check for multiple expressions.
q = 2433
w = 2433

if w > q:
  print("w is greather than q")
elif q == w:
  print("q and w are equal")
Output:
q and w are equal


if .. elif .. slse statements


Example: if .. elif .. slse
x = 457
y = 28
if y > x:
  print("y is greater than x")
elif x == y:
  print("x and y are equal")
else:
  print("x is greater than y")
Output:
x is greater than y




Python If Else: one line, elif, syntax, if, exercices, statement, ejemplos, inline, return, break, python if, if not, if elif, string contains, main, or, else one line, file exists, else elif, example
Python If Elif Else - python

Online Editor
ONLINE EDITOR

news templates


COLOR PICKER

news templates
This tool makes it easy to create, adjust, and experiment with custom colors for the web.


HTML Templates
news templates
Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.


CSS HTML Layout
news templates
Find here examples of creative and unique website layouts.


Free CSS HTML Menu
news templates
Find here examples of creative and unique website CSS HTML menu.


0
Online Editor
ONLINE EDITOR

news templates


COLOR PICKER

news templates
This tool makes it easy to create, adjust, and experiment with custom colors for the web.


HTML Templates
news templates
Magnews2 is a modern and creative free magazine and news website template that will help you kick off your online project in style.


CSS HTML Layout
news templates
Find here examples of creative and unique website layouts.


Free CSS HTML Menu
news templates
Find here examples of creative and unique website CSS HTML menu.