Python learning solution, Cheat Sheet of Computer Security

this is paracticle of python language

Typology: Cheat Sheet

2022/2023

Uploaded on 05/18/2023

muhammad-ibraheem-5
muhammad-ibraheem-5 🇵🇰

2 documents

1 / 37

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Practical File
Computer Science
(Python)
Name:
Class:
School:
Roll No:
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25

Partial preview of the text

Download Python learning solution and more Cheat Sheet Computer Security in PDF only on Docsity!

Practical File

Computer Science

(Python)

Name:

Class:

School:

Roll No:

No. Name of Practical Date Page no. Sign of the Teacher

  1. (^) WAP to compute x n of given two integers x and n.
  2. (^) WAP for calculating simple interest.
  3. (^) WAP to accept a number from the user and display whether it is an even number or odd number.
  4. (^) WAP to accept percentage of a student and display its grade accordingly.
  5. (^) WAP to print Fibonacci series up to certain limit.
  6. (^) WAP to display prime numbers up to a certain limit. 7.WAP to accept a number, find and display whether it’s a Armstrong number or not.
  7. (^) WAP to accept a number and find out whether it is a perfect number or not.
  8. (^) WAP to print the sum of the series 1+x^1 /1!+x^2 /2!+…….xn/(n)!- exponential series.
  9. (^) WAP to print the following pattern: 1 1 2 1 2 3 (^11) WAP to accept a string and display whether it is a palindrome.
  10. (^) WAP that counts the number of alphabets and digits, uppercase letters, lowercase letter, spaces and other characters in the string entered.
  11. (^) WAP to accept a string ( a sentence) and returns a string having first letter of each word in capital letter.
  12. (^) WAP to remove all odd numbers from the given

Index

Program - 1 WAP to compute x n^ of given two integers x and n. Code:

Program 2: WAP for calculating simple interest. Code:

Program 4: WAP to accept percentage of a student and display its grade accordingly. Code:

Program 5: WAP to print Fibonacci series up to certain limit. Code:

Program 7 : WAP to accept a number, find and display whether it’s a Armstrong number or not. Code:

Program 8: WAP to accept a number and find out whether it is a perfect number or not. Code:

Program 10: WAP to print the following pattern: 1 1 2 1 2 3 Code:

Program 1 1 : WAP to accept a string and display whether it is a palindrome. Code:

Program 13 WAP to accept a string ( a sentence) and returns a string having first letter of each word in capital letter. Code:

Program 14 - WAP to remove all odd numbers from the given list. Code:

Program 16 WAP to display cumulative elements of a given list. For eg. List is [10,20,30,40] output should be [10, 30, 60, 100] Code:

Program 17 - WAP to display frequencies of all the elements of a list. Code: