Advanced Programming with Python

1 Write a program in Python that displays between two thousand and ten thousand numbers that can be divided into seven parts and none of the digits is zero.

Use the function to detect the absence of zeros in the digits of numbers.

File Download
2 Write a program that reads an integer and displays the divisors of that number.

Use the subroutine to display the divisors of a number

File Download
3 Write a program that reads two integers and shows the smallest common multiple and the largest divisor of two.

Use two functions to calculate the smallest common multiple and the largest common divisor of two numbers.

File Download
4 Write a program that reads two large integers and calculates and displays the smallest common multiple and the largest common divisor of two numbers optimally.

Use two functions to calculate the smallest common multiple and the largest common divisor of two numbers. The optimal method for calculating large numbers

File Download
5 Write a program that reads the names of ten colors and displays colors that are less than five in length.

File Download
6 Write a program in Python that reads two square matrices and shows the addition and multiplication of two matrices.

A square matrix is a matrix whose number of rows and columns are equal.

File Download
7 Write a program in Python that reads the names of ten students and displays them if there is no number in the student name.

Detect the existence of a digit in a string by a function with a logical output.

File Download
8 Write a program in Python that reads the names of ten students and processes the names of the students.

Student Name Processing: All letters except the first character are minimized.

File Download
9 Write a program in Python that reads the names of five students, then reads the last names of the same five students, and finally displays the full names of the five students.

A program that demonstrates the need for logical grouping between attributes.

File Download
10 Write a program in Python that reads and displays name / surname and grade point average data for five students.

Without using the concept of class

File Download
11 Write a program that reads the data of the elements of a matrix and displays only the elements that are prime.

The prime recognition of the number and reading of the data of the matrix components is done by the functions.

File Download
Document