0% found this document useful (0 votes)
3 views4 pages

Python Conditional Statements Examples

The document outlines a Python programming assignment by Mohammed Jaorawala, demonstrating various conditional statements including 'if', 'if else', 'if elif', and nested 'if else'. Each section includes a sample program with corresponding outputs. The assignment is part of a practical course in programming with a focus on conditional logic.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views4 pages

Python Conditional Statements Examples

The document outlines a Python programming assignment by Mohammed Jaorawala, demonstrating various conditional statements including 'if', 'if else', 'if elif', and nested 'if else'. Each section includes a sample program with corresponding outputs. The assignment is part of a practical course in programming with a focus on conditional logic.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Name: Mohammed Jaorawala Enrollment No:23111590128 Class: CO-A

Batch: A1 Subjects:PWP Practical: 04

Aim: implement the python program to demonstrate the use of following conditional
statement.

1) if statement:
Program1:
a=10
b=20
if a<b:
print("a is less than b")
Output:
2) if else statement:
Program2:
a=10
b=20
if a>b:
print("a is greater")
else:
print("b is greater")
Output:
3) if elif statement:
program3:
a=10
b=20
c=30
if a>b:
print("a is greater")
elif b>c:
print("b is greater")
else:
print("c is greater")
Output:
4) nested if else statement:
Program4:
number=15
if number>0:
print("the number is positive")
if number>10:
print("the number is greater than 10")
else:
print("the number is 10 or less than 10")
else:
print("the number is not positive")
Output:

30 20 50 Teacher’s signature

You might also like