This document outlines practical work in Python submitted by Harshit Sinha for a Bachelor of Computer Application program. It includes a list of various Python programs to be developed, such as an arithmetic calculator, temperature conversion, and checks for prime and palindrome numbers. The work is guided by Mrs. Ruby Mam at Naraina College of Management for the academic year 2024-25.
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 ratings0% found this document useful (0 votes)
4 views
pythonindex.(me)
This document outlines practical work in Python submitted by Harshit Sinha for a Bachelor of Computer Application program. It includes a list of various Python programs to be developed, such as an arithmetic calculator, temperature conversion, and checks for prime and palindrome numbers. The work is guided by Mrs. Ruby Mam at Naraina College of Management for the academic year 2024-25.
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
You are on page 1/ 3
PRACTICAL WORK
OF PYTHON
Submitted for Partial fulfillment of award of
BACHELOR OF COMPUTER APPLICATION
BY HARSHIT SINHA Guided by MRS. RUBY MAM
(Assistant professor)
NARAINA COLLEGE OF MANAGEMENT
YEAR (2024-25) Sr. PROGRAMS PAGE NO. SIGNATURE no
What a python program to make
1 an arithmetical calculator using built-in function. Write a python menu driven 2 program to convert the given temperature from Fahrenheit to Celsius and vice versa depending upon user's choice. Write a python program to input 3 an integer value to convert it in Decimal, Binary, Octal and Hexadecimal with using format function. Write a python program input 4 three number through the user to find out greatest of 3 number using nested if statements. Write a python program to check 5 if an item is already present in a Dictionary. Write a python program to find 6 out factorial of the given number.
Write a python program input a
7 number which is any digits to check the number is Palindrome or not Palindrome. Write a python program input a 8 number to check the number is prime or not prime. Write a python program input a 9 number which is any digits to check the number is Armstrong or not Armstrong. Write a python program to check 10 whether a string is palindrome or not palindrome.
Write a python program input N
11 number to calculation sum and average, if found a negative number then stop the iteration and display the related output. Write a python program to find out 12 reverse of a String, Tuple, List, Range and set and display the output in proper format. Write a python program to find out 13 greatest if an Integer number, Floating point number, Characters, Strings and List. Write a python program to swapping 14 two numbers using function with arguments and no return value.
Write a python program to find out
15 Area of circle and area of triangle using function with arguments and return value.