Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
131 views

Python - List of Experiments

The document lists 15 Python programming experiments including finding the greatest common divisor, square root using Newton's method, exponentiation, maximum value in a list, linear search, binary search, selection sort, insertion sort, merge sort, prime numbers, matrix multiplication, command line arguments, frequent words in text, elliptical orbits simulation, and bouncing ball simulation. The experiments cover mathematical, sorting, searching, file input/output, and graphics simulation problems.
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
131 views

Python - List of Experiments

The document lists 15 Python programming experiments including finding the greatest common divisor, square root using Newton's method, exponentiation, maximum value in a list, linear search, binary search, selection sort, insertion sort, merge sort, prime numbers, matrix multiplication, command line arguments, frequent words in text, elliptical orbits simulation, and bouncing ball simulation. The experiments cover mathematical, sorting, searching, file input/output, and graphics simulation problems.
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

List of Experiments:

1. To write a Python program to find GCD of two numbers.

2. To write a Python Program to find the square root of a number by Newton’s


Method.

3. To write a Python program to find the exponentiation of a number.

4. To write a Python Program to find the maximum from a list of numbers.

5. To write a Python Program to perform Linear Search

6. To write a Python Program to perform binary search.

7. To write a Python Program to perform selection sort.

8. To write a Python Program to perform insertion sort.

9. To write a Python Program to perform Merge sort.

10. To write a Python program to find first n prime numbers.

11. To write a Python program to multiply matrices.

12. To write a Python program for command line arguments.

13. To write a Python program to find the most frequent words in a text read
from a file.

14. To write a Python program to simulate elliptical orbits in Pygame.

15. To write a Python program to bouncing ball in Pygame.

You might also like