0% found this document useful (0 votes)
13 views2 pages

Python Programs for Basic Tasks

The document contains a set of programming tasks in Python. It includes checking the sign of a number, displaying a multiplication table, implementing a linear search algorithm, and counting numbers greater than 50 in a list. Each task is aimed at practicing basic programming concepts and algorithms.

Uploaded by

kush.thumar12
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)
13 views2 pages

Python Programs for Basic Tasks

The document contains a set of programming tasks in Python. It includes checking the sign of a number, displaying a multiplication table, implementing a linear search algorithm, and counting numbers greater than 50 in a list. Each task is aimed at practicing basic programming concepts and algorithms.

Uploaded by

kush.thumar12
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

Set-1

1. Write a python program to check whether a given number is positive,negative or zero


2.

2. Write a program to display the multiplication table of a given number up to 12 times


3. Implement a linear search algorithm to find an element in a list. If found, print its position:
otherwise, print “Not found”. Python

4. Write a program to count how many numbers in a list are greater than 50. Python

You might also like