End of Course Exercise
Objectives
- Write and run Python code
- Practice problem solving using Python code.
- Learn how to detect programming errors through program testing.
- Correct/fix syntax errors and bugs.
Prerequisites
- Students are expected to be familiar with a text editor.
- A basic understanding of running and linking in concept.
- Knowledge in area such as Python language syntax, input output function is recommended.
Questions
- Write a Python program to display the following text on the screen.
- Write a program to assign the number 34.5678 to a variable named “number” then display the number rounded to the nearest integer value and next the number rounded to two decimal places.
- Write a program to identify whether a number input from the keyboard is even or odd. If it is even, the program should display the message “Number is even”, else it should display “Number is odd”.
- Write a program to display the student’s grade based on the following table:
Marks | Grade |
---|---|
>= 75 | A |
> 50 and <=75 | B |
> 25 and <=50 | C |
<= 25 | D |
- Write a program to convert a given character from uppercase to lowercase and vice versa.
- Write a program which accepts a number (an amount of money to be paid by a customer in rupees) entered from the keyboard. If the amount is greater than or equal to 1000 rupees, a 5% discount is given to the customer. Then display the final amount that the customer has to pay.
- A car increases it velocity from u ms-1 to v ms-1 within t seconds. Write a program to calculate the acceleration.
- Write a program to input a temperature reading in either Celsius(c) or Fahrenheit(f) scale and convert it to the other scale. The temperature reading consists of a decimal number followed by letter ”F” or ”f” if the temperature is in Fahrenheit scale or letter ”C” or ”c” if it is in Celsius scale. You may use a similar format for the output of the program. Note:
c = 5( f − 32) / 9
- Develop a simple calculator to accept two floating point numbers from the keyboard. Then display a menu to the user and let him/her select a mathematical operation to be performed on those two numbers. Then display the answer. A sample run of you program should be similar to the following:
Enter number 1: 20
Enter number 2: 12
Mathematical Operation
-----------------------------------
1 - Add
2 - Subtract
3 - Multiply
4 - Divide
-----------------------------------
Enter your preference: 2
Answer : 8.00
- Write a program to display all the integers from 100 to 200.
- Write a program to calculate the sum of all the even numbers up to 100.
- Write a program to compute the sum of all integers form 1 to 100.
- Write a program to calculate the factorial of any given positive integer.
- Write a program to compute the sum of all integers between any given two numbers. In this program both inputs should be given from the keyboard.
- Modify the above so that it works only for positive integers.
- Write a program to display the following symbol pattern:
- Write a program to display the message “Hello World!” 10000 times. The program should allow users to terminate the program at any time by pressing any key before it displays all the 10000 messages.
- Write a program to display a sine table. The program should display all the sine values from 0 to 360 degrees (at 5 degrees increments) and it should display only 20 rows at a time
- Write a program to store marks of 5 students for 5 subjects given through the keyboard. Calculate the average of each students marks and the average of marks taken by all the students
- Write a program to calculate the circumference and area of a circle given its radius. Implement calculation of circumference and areas as separate functions.
- Write a program to read the file “my file.txt” which has the message:
- Write a Python program to store the message “Introduction Python Programming” in a file named “message.txt”.
- Write a program to display the following menu on the screen and let the user select a menu item. Based on the user’s selection display the category of software that the user selected program belongs to.
- Develop a simple telephone directory which saves your friends contact information in a file named directory.txt. The program should have a menu similar to the following: When you press “1” it should request you to enter following data: After adding new contact information it should again display the menu. When you press “2” it should display all the contact information stored in the directory.txt file as follows:
--------------Contact info---------------
Name Tel-No e-Mail
Kamala 077-7123123 kamala@yahoo.com
Kalani 033-4100101 kalani@gmail.com
Saman 011-2123456 saman@cse.mrt.ac.lk
-----------------------------------------
- Given a date as a triplet of numbers (y, m, d), with y indicating the year, m the month (m = 1 for January, m = 2 for February, etc.), and d the day of the month, the corresponding day of the week f (f = 0 for Sunday, f = 1 for Monday, etc.) can be found as follows: Write a program that will read a date and print the corresponding day of the week. All divisions indicated above are integer divisions.
- Write a program to input a series of positive integers and determine whether they are prime. The program should terminate if a negative integer is given as the input. A prime number is a number that is divisible by only one and itself. However one is not considered a prime number.
- Write a program to find out whether a given number is a perfect number. The program should terminate if a negative integer is given as the input. A perfect number is a number whose factors other than itself add up to itself.
- Write a program to find and display the minimum and the maximum among 10 numbers entered from the keyboard. Use a single-dimensional array to store the numbers entered. The numbers can be non-integers. An example would be as follows:
- Suppose there are 4 students each having marks of 3 subjects. Write a program to read the marks from the keyboard and calculate and display the total marks of each student. Use a 2D (two-dimensional) array to store the marks. An example would be as follows:
- Write a program to read in two matrices A and B of dimensions 3×4 and 4×3 respectively, and compute and display their product AB (of dimensions 3×3). Assume that the elements of the matrices are integers. Use functions to while implementing this program.
Congratulation!
Congratulations on completing this Python Fundamentals Course