0% found this document useful (0 votes)
3 views1 page

Practical Python Project - 104733

The document outlines ten Python programming tasks, including checking if a number is positive or negative, determining if a character is uppercase or lowercase, and verifying if a string is empty. It also includes programs for finding the maximum of two numbers, checking voting eligibility based on age, and assessing loan eligibility based on credit score. Each task emphasizes basic conditional statements and logical checks in Python.

Uploaded by

asimiyus642
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Practical Python Project - 104733

The document outlines ten Python programming tasks, including checking if a number is positive or negative, determining if a character is uppercase or lowercase, and verifying if a string is empty. It also includes programs for finding the maximum of two numbers, checking voting eligibility based on age, and assessing loan eligibility based on credit score. Each task emphasizes basic conditional statements and logical checks in Python.

Uploaded by

asimiyus642
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

1. Write a Python program to check if a number is positive or negative.

2. Create a Python program to check if a character is uppercase or lowercase.


3. Write a Python program to check if a string is empty or not.
4. Write a Python program to find the maximum of two numbers using if-else statements.
5. Create a Python program to check if a person is eligible to vote or not based on their age.
6. Write a Python program to check if a number is even or odd using if-else statements.
7. Write a Python program to check if a number is positive, negative, or zero.
8. Create a Python program to find the grade of a student based on their marks.
9. Write a Python program to check if a person is eligible for a loan based on their credit score.
10. Write a Python program to check if a number is positive and even.

You might also like