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 […]
PyPro #54 Create random objects of subclasses of a superclass
Reading Time: 1 minutesCreate random objects of subclasses of a superclass in Python Create random objects of subclasses of a superclass in Python Write a Python program to create random objects of subclasses […]
PyPro #53 Match an 'a' followed by 4 'b's in a String using RegEx
Reading Time: 1 minutesMatch an 'a' followed by 4 'b's in Python Match an 'a' followed by 4 'b's in Python Match an 'a' followed by 4 'b's: Write a Regular Expression in […]
PyPro #52 List all text files in the current directory
Reading Time: 1 minutesList all text files in the current directory in Python List all text files in the current directory in Python List all text files in the current directory: Write a […]
PyPro #51 Divisible by 9 but not multiples of 2
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 […]
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 […]