Python Loops

For Loop While Loop 'break' statement in the loop 'continue' statement in the loop For Loop with 'else' clause We can use 'else' for loops. When the loop condition of 'for' or 'while' statement fails then code part in 'else' is executed. If break statement is executed inside for loop then the 'else' part is ... Read more

How to Tell if Your Theme and Plugins are Optimized

Optimization is a major buzzword for website owners both new and old. Every aspect of your website; from the design to the content, all has factors that need to be optimized for SEO. It can be a daunting task, which is why it’s best to look at one piece at a time. Today, we’re going ... Read more

Selenium

Click the link with the Selenium webdriver and Python Filling out and submitting forms with the Selenium webdriver and Python Run this script in command line to install Selenium: Selenium for Python documentation

Beautiful Soup

Run this code into command line to install Beautiful Soap: pip install beautifulsoup4 Run this code into command line to install lxml html-parser: pip install lxml Beautiful Soup documentation

Requests

Download file from internet and save it Installing Requests module: Python Requests module

7 Just Out Excellent WordPress Plugins you Need to Check Out

Depending on the purpose of your website, you’ll need a lot of additional functionality to have it running the way you want. One of the WordPress’ strengths is its flexibility which allows you to equip your website with the features you need. It updates its huge repository with new products every day allowing you to ... Read more

Python function

Python *args and **kwargs *args is the positional arguments in a function and **kwargs is the keyword arguments in s function