Reading Time: 1 minutesdivisible by 9 but not multiples of 2 in Python divisible by 9 but not multiples of 2 in Python Divisible by 9 but not multiples of 2: Write a […]
Month: March 2017
Python: Changing Current Directory
Reading Time: 1 minutesCurrent Directory in Python Current Directory in Python In order to check the current directory in Python, you can use the getcwd() function of the standard library os. current directory […]
Python: Finding pathnames matching a Unix-style pattern with glob
Reading Time: 1 minutesglob in Python glob in Python The glob standard library helps to find pathnames matching a Unix-style pattern, using its glob() function. You can use Unix wildcards such as *, […]
PyPro #50 Check for a Geometric Progression
Reading Time: 1 minutesCheck for Geometric Progression in Python Check for Geometric Progression in Python Write a Python function which accepts a list of terms and tells the user whether these terms make […]
PyPro #49 All Sublists of a List
Reading Time: 1 minutesAll sublists of a list in Python All sublists of a list in Python All Sublists of a List: Write a Python program to obtain all possible sublists of a […]
PyPro #48 Implementing Binary Search algorithm in Python
Reading Time: 1 minutesBinary Search algorithm in Python Binary Search algorithm in Python Write a Python program to implement the Binary Search algorithm in Python. Binary Search algorithm in Python See also: Python […]
PyPro #47 Finding words of length from 2 to 4
Reading Time: 1 minutesFinding words of length from 2 to 4 in Python Finding words of length from 2 to 4 in Python Finding words of length from 2 to 4: Using Python, […]
PyPro #46 Generator of Multiples of 7
Reading Time: 1 minutesGenerator of Multiples of 7 in Python Generator of Multiples of 7 in Python Generator of Multiples of 7: Write a generator function which yields multiples of 7 lying between […]
PyPro #45 Custom Exception Class for Temperature Control
Reading Time: 1 minutesCustom Exception Class in Python Custom Exception Class in Python Custom Exception Class for Temperature Control: Write a custom Exception class, derived from the base Exception class, having the following […]
PyPro #44 Compute sum of digits of a number
Reading Time: 1 minutesSum of digits of a number in Python Sum of digits of a number in Python Compute sum of digits of a number: Write a Python Program to calculate the […]

