Comments in Python 3
Comments in Python 3 are a little bit different from other programming languages such as PHP etc. Python comments start with the hash(#) symbol and the block or a line of code started by # is ignored in python. Comments are also used to stop the execution of a piece of code. Also, We can … Read more