• Python Comments

    Python Comments

    Python Comments Table Of Contents What Is Python Comment? Single Line Comments. Multiple Line Comments. (1) What Is Python Comments? Comments are descriptions that a programmer writes for a better understanding of the intent and functionality of the program. Using comments in programs makes our code more understandable. It makes the program more readable which helps us remember why certain blocks of code were written. Other than that, comments can also be used to ignore some code while testing other blocks of code. This offers a simple way to prevent the execution of some lines or write a quick pseudo-code

    Read More