How to comment out multiple lines in Python
Commenting out code in python is a common and major part among programmers. This part allows to temporarily disable code without deleting them. It is used for debugging or for explaining code to fellow developers. A programmer faces unique challenges unlike other languages such as C++ or Java Script. The major challenge a programmer face […]