WordPress Installation on XAMPP Server – Step by Step Guide

WordPress Installation on XAMPP Server

As we know, WordPress is the most popular CMS (Content Management System) and is empowering more than 35% of the websites in the world. Most beginners would like to try WordPress on their local PC rather than buying special web hosting to install it. Let’s just assume you just want to install WordPress on a […]

Python Operators

Python Operators

This tutorial on Python Operators illustrates the Arithmetic, Assignment, Comparision, Logical, Identity, Membership, and Bitwise operators with examples. In any programming language, operators are used for performing different kinds of operations on the variables and the values. Python allows us to use an extensive set of operators. Python Operators can be divided into seven different […]

Python Scope – global, local and nonlocal Variables

Python Scope

This is a detailed tutorial of the Python Global, Local & Non-Local Variables. Learn variable scopes & where to use which type of variables in your program. On the basis of their scopes, the python variables are categorized into three types, namely, Global, Local and Non-Local variables. Now, many of you might be thinking, what […]