How to Install XAMPP on Windows- Step by step guide

To run PHP pages, we need to install a software called a web server. For PHP, Apache is such software. Also, we you need to run dynamic PHP websites, you must install database. XAMPP is a bundle of such software which have Apache server, MYSQL database. About XAMPP: Introduction XAMPP is free-to-use Apache Distribution package. … Read more

Division(/) vs Floor Division(//) Operators in Python

In Python, we have two division operators: / and // The / is called normal Division operator and // is called Floor Division operator. The Division (/) operator returns a fractional number whereas Floor Division(//) operator  rounds off the result to the nearest lower whole number. Example: Output: 6.5 Output: 6 Output: -6.5 Output: -7