Reading Time: 1 minutesDistance between points on Cartesian Plane in Python Distance between points on Cartesian Plane in Python Given two points represented by coordinates i.e. (x1, y1) & (x2, y2), write a […]
PyPro #84 Match a word at the end of a string ending with an optional punctuation mark
Reading Time: 1 minutesMatch a word at the end of a string in Python Match a word at the end of a string in Python Write a Regular Expression in Python to match […]
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 #82 Proxy Design Pattern
Reading Time: 1 minutesProxy Design Pattern in Python Proxy Design Pattern in Python Write a Python program to implement Proxy Design Pattern. See also: Python 101 Object Oriented Python Design Patterns in Python […]
PyPro #81 Facade Design Pattern
Reading Time: 1 minutesFacade Design Pattern in Python Facade Design Pattern in Python Write a Python program to implement Facade Design Pattern. Facade See also: Python 101 Object Oriented Python Design Patterns in […]
PyPro #80 Convert a date of dd-mm-yyyy format to yyyy-mm-dd format
Reading Time: 1 minutesConvert a date of dd-mm-yyyy format to yyyy-mm-dd format in Python Convert a date of dd-mm-yyyy format to yyyy-mm-dd format in Python Write a Regular Expression in Python to convert […]
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 #78 Generate XML by surrounding text by a tag name
Reading Time: 1 minutesGenerate XML by surrounding text by a tag name in Python Generate XML by surrounding text by a tag name in Python Write a Python program to generate XML by […]
PyPro #77 Match an uppercase letter with one or more lowercase letters
Reading Time: 1 minutesMatch an uppercase letter with one or more lowercase letters in Python Match an uppercase letter with one or more lowercase letters in Python Write a Regular Expression in Python […]
PyPro #76 All possible permutations of a list
Reading Time: 1 minutesAll possible permutations of a list in Python All possible permutations of a list in Python Write a Python program to print all possible permutations of a list such as […]