Reading Time: 1 minutesAnagram Test in Python Anagram Test in Python Given two strings, write a Python program for Anagram Test i.e. check if they are anagrams. See also: Python 101 Object Oriented […]
Nalini Aggarwal
PyPro #87 Factors of a number
Reading Time: 1 minutesFactors of a number in Python Factors of a number in Python Write a Python program to list out all factors of a number. See also: Python 101 Object Oriented […]
PyPro #83 Remove an element from a tuple
Reading Time: 1 minutesRemove an element from a tuple in Python Remove an element from a tuple in Python Write a Python program to remove an element from a tuple, without using lists. […]
PyPro #79 Counting Heads & Tails in 100 tosses of a coin
Reading Time: 1 minutesCounting Heads & Tails in 100 tosses of a coin in Python Counting Heads & Tails in 100 tosses of a coin in Python Write a program for counting heads […]
PyPro #68 Finding common elements in lists
Reading Time: 1 minutesFinding common elements in lists in Python Finding common elements in lists in Python Write a Python program for finding common elements in lists. Finding common elements in lists See […]
PyPro #61 Converting a string-containing-list-syntax to a list
Reading Time: 1 minutesConverting a string-containing-list-syntax to a list in Python Converting a string-containing-list-syntax to a list in Python Converting a string-containing-list-syntax to a list. Given a list stored as a string, write […]
PyPro #60 Extract words starting with 'a', 'd' or 's'
Reading Time: 1 minutesExtract words starting with a given letter in Python Extract words starting with a given letter in Python Extract words starting with 'a', 'd' or 's'. Write a Regular Expression […]
PyPro #59 Implementing Linear Search algorithm in Python
Reading Time: 1 minutesLinear Search algorithm in Python Linear Search algorithm in Python Write a Python program to implement the Linear Search algorithm in Python. Linear Search algorithm in Python See also: Python […]
PyPro #56 Generate 10 random even numbers from 0 to 100
Reading Time: 1 minutesGenerate 10 random even numbers in Python Generate 10 random even numbers in Python Write a Python program to generate 10 random even numbers from 0 to 100. generate 10 […]
PyPro #55 Printing multiplication tables
Reading Time: 1 minutesprinting multiplication tables in Python printing multiplication tables in Python Printing multiplication tables: Write a Python program to print first 5 multiples of a given number in the format 5 […]