Reading Time: 1 minutesExtract contents of a Paragraph tag with a given id in Python Extract contents of a Paragraph tag with a given id in Python Extract contents of a Paragraph tag […]
lakshayarora7
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 […]
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 #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 #43 Extract all links from anchor tags
Reading Time: 1 minutesExtract all links from anchor tags in Python Extract all links from anchor tags in Python Extract all links from anchor tags: Write a Python program to extract all hyperlinks […]

