Learn How to Code using Python Day 1. Here in this post, you will learn about Python basic syntax. 1. Python requires indention to indicated blocks of codes. 2. Python statements end with a new line or you can use the line continuation character (\). 3. Python comments begin with a # or you can also enclosed a multiline comment with triple-quotes '''. 4. Python supports the single quote and the double quote for string literals. 5. If you leave a line with just whitespace, the interpreter will ignore it.