Showing Post of  "O Level Practical" Category

Write A Program To Print All Armstrong Numbers In A Given Range.

In This article we are share to Python Program to print all armostrong numbers in given range. first of all we should know What is armstrong number ?

Read More

Write A Program To Multiply Two Numbers By Repeated Addition E.g. 6*7 = 6+6+6+6+6+6+6

In this artical we are going to discuss python program to multiply two numbers by repeated addition. So lats start... Python Program to multiply two numbers by repeated addition. num1=int(input("Enter

Read More

Program To Check If There Is A Duplicate Element Present In The List Or Not.if That Is Present In The List Then Remove It

In This article we are going to share solution for Write a program to check if there is a duplicate element present in the list or not.if that

Read More

Take Two NumPy Arrays Having Two Dimensions. Concatenate The Arrays On Axis 1.

In This article we are going to share Solution for Python Program to Take two NumPy arrays having two dimensions. Concatenate the arrays on axis 1. Program Code: #Take two

Read More

Program To Check If An Element Exists In The List Or Not If That Element Does Not Exist Then Add

O Level Practical July 2022 Old Paper Solution - python m3-r5 Write a program to check if an element exists in the list or not. if that element does

Read More

Write A Python Program To Implement A Calculator To Do Basic Operations Like(+, -, *, /).

Question: Write a Python program to implement a calculator to do basic operations Like(+, -, *, /).  Solution:  n1=int(input("Enter first numbers")) n2=int(input("Enter second numbers")) op=input("Enter the operation +,-,*,/ : ") if op=='+':

Read More

Write A Python Program To Implement Matrix Multiplication Using Numpy Array.

Question: Write a Python program to implement matrix multiplication using numpy array. Solution: X = [[8,5,1],[9,3,2],[4 ,6,3]] Y = [[8,5,3],[9,5,7],[9,4,1]] result = [[0,0,0],[0,0,0],[0,0,0]] for i in range(len(X)): for j in

Read More

Write A Python Program To Print The Numbers From A Given Number N To Till 0 Using Recursion.

Question: Write a Python program to print the numbers from a given number n to till 0 using recursion. Solution: def newideas(n): if (n>=0): print(n, end=”

Read More

{Solved} O Level Practical Question Paper January 2023

In this article we are going to share Practical Questions with solution for O Level Exam and this is orginal o level practical question paper 2023. so let's

Read More

Love Calculator In Python

Python Project FLAMES Love Calculator in python  Source Code: boyname=input("Enter your name").upper() girlname=input("Enter your partner name").upper() for x in boyname: if x in girlname:

Read More