Codility Algorithm Practice Lesson 7: Stacks And Queues, Task 3: Nesting— a Python approach
https://medium.com/@deck451/codility-algorithm-practice-lesson-7-stacks-and-queues-task-3-nesting-a-python-approach-905db9314ee0
https://medium.com/@deck451/codility-algorithm-practice-lesson-7-stacks-and-queues-task-3-nesting-a-python-approach-905db9314ee0
Medium
Codility Algorithm Practice Lesson 7: Stacks And Queues, Task 3: Nesting— a Python approach
Having wrapped up the Fish challenge, it’s now time to focus on another task. This one is called Nesting and it’s incredibly similar to one…
Tutorial 5: Regular Expressions in Python — Using regex symbols ‘ ^ $ \b \B’
https://gaurav-patil21.medium.com/tutorial-5-regular-expressions-in-python-using-regex-symbols-b-b-dc7720a2ecc0
https://gaurav-patil21.medium.com/tutorial-5-regular-expressions-in-python-using-regex-symbols-b-b-dc7720a2ecc0
Medium
Tutorial 5: Regular Expressions in Python — Using regex characters ‘ ^ $ \b \B’
Missed previous tutorial? — Click here
Scrape Multiple Google Answer Box Layouts with Python
https://python.plainenglish.io/scrape-multiple-google-answer-box-layouts-with-python-88fe8b1a4f5d
https://python.plainenglish.io/scrape-multiple-google-answer-box-layouts-with-python-88fe8b1a4f5d
Medium
Scrape Multiple Google Answer Box Layouts with Python
This blog post covers how to scrape: weather, stock, converter, calculator, phone number, address, population, translation, dictionary…
Python Range Function Thoroughly Explained
https://zl-liu.medium.com/python-range-function-thoroughly-explained-6bbbc8ab8d8f
https://zl-liu.medium.com/python-range-function-thoroughly-explained-6bbbc8ab8d8f
Medium
Python Range Function Thoroughly Explained
If you clicked on this article, chances are that you’re new to For-loops, and have trouble understanding the range function and how it…
What are basic string methods in Python?
https://medium.com/@bloggingtech260/what-are-basic-string-methods-in-python-a915874f0cc
https://medium.com/@bloggingtech260/what-are-basic-string-methods-in-python-a915874f0cc
Medium
What are basic string methods in Python?
In Python, strings are immutable.This means that they can not be modified.So if we wanted to repair a typo in string,we can’t simply modify…