multiline comment – POFTUT

Python Multiline Comment Tutorial with Examples

Python Multiline Comment Tutorial with Examples

Comments are used to put some text into the Python code. This text can be used to explain something about the application or some method data etc. Python provides two types of comments named Single Line and Multi-Line. Single Line Comment # is used to create a single-line comment. We will put # to the … Read more

SQL Comments Tutorial with Example

SQL Comments Tutorial with Example

SQL is a defacto language used to manage, query, select, filter data in a relational database. Similar to the programming languages SQL provides comments in order to make the SQL query or clause more readable and put some note. Single-Line Comments We will start with single-line comments. Double dash — is used to create a … Read more