.png)
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 MoreIn 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 MoreIn 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 MoreIn 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 MoreIn 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 MoreO 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 MoreQuestion: 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 MoreQuestion: 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 MoreQuestion: 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 MoreIn 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 MorePython 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