Python for Engineers
Solve Problems by Coding Solutions - A Complete solution for python programming
Blog Pages
(Move to ...)
Code
Top 10 Blogs
NumPy Tutorials
Distributions
Self Learning
IDE
About
▼
Program for Find sum of even factors of a number
›
import math def sumofFactors(n) : if (n % 2 != 0) : return 0 res = 1 for i in range(2, (int)(math.sqrt(n)) + 1) : count = 0 c...
Program for Legendre\’s Conjecture
›
import math def isprime( n ): i = 2 for i in range (2, int((math.sqrt(n)+1))): if n%i == 0: return False return True def Lege...
Design with turtle
›
import turtle turtle.speed(0) turtle.bgcolor("black") for i in range(15): for colours in ("red", "magenta", ...
Counter to find the size of largest subset of anagram words
›
from collections import Counter def maxAnagramSize(input): input = input.split(" ") for i in range(0,len(input)): input[i]=...
program to count Even and Odd numbers in a List Using Python Lambda Expressions
›
list1 = [10, 21, 4, 45, 66, 93, 11] odd_count = len(list(filter(lambda x: (x%2 != 0) , list1))) even_count = len(list(filter(lambda x: (x%2 ...
‹
›
Home
View web version