Reading Time: 0 minutes
lakshayarora7
Project Euler Problem #1: Multiples of 3 and 5 | Difficulty 5%
Reading Time: 1 minutesProject Euler Problem #1: Multiples of 3 and 5 Project Euler Problem #1: Multiples of 3 and 5 If we list all the natural numbers below 10 that are multiples […]
Python: Lexicon
Reading Time: 1 minutesWeb scraping in Python Web scraping in Python Lexicon: A script that scrapes off word of the day from 5 different websites, along with a phrase of the day and […]
Windows: Scheduling a task
Reading Time: 1 minutesTask Scheduler Windows Task Scheduler Windows Scheduling tasks is a brilliant way of automating routine tasks. Say you have a script you would like to execute daily. Or you want […]
PyPro #101 Chain of Responsibility Design Pattern
Reading Time: 1 minutesChain of Responsibility Design Pattern in Python Chain of Responsibility Design Pattern in Python Write a Python program to implement Chain of Responsibility Design Pattern. See also: Python 101 Object […]
PyPro #100 Convert camelCase words to underscore_separated_lowercase words
Reading Time: 1 minutescamelCase to underscore_separated_lowercase in Python camelCase to underscore_separated_lowercase in Python Write a Regular Expression in Python to convert camelCase to underscore_separated_lowercase words. To learn more about Regular Expressions in Python, […]
PyPro #99 Mediator Design Pattern
Reading Time: 1 minutesMediator Design Pattern in Python Mediator Design Pattern in Python Write a Python program to implement Mediator Design Pattern. See also: Python 101 Object Oriented Python Design Patterns in Python […]
PyPro #98 Print with a delay
Reading Time: 1 minutesPrinting with a delay in Python Printing with a delay in Python Write a Python program to print a string 3 times with a sleep duration of 1 second. See […]
PyPro #97 Find all words with length of 4 characters
Reading Time: 1 minutesFind all words with length of 4 characters in Python Find all words with length of 4 characters in Python Write a Regular Expression in Python to find all words […]
PyPro #96 Iterator Design Pattern
Reading Time: 1 minutesIterator Design Pattern in Python Iterator Design Pattern in Python Write a Python program to implement Iterator Design Pattern. See also: Python 101 Object Oriented Python Design Patterns in Python […]