#2articles1week
Read more stories on Hashnode
Articles with this tag
Functions Functions are reusable pieces of code. They allow you to give a name to a block of statements, allow you to use the functionality of the...
The while Statement The while statement allows you to repeatedly execute a block of statements as long as a condition is true. A while statement is an...
This is the list of all available operators in Python with the order of execution
Escape Sequences Suppose, you want to have a string which contains a single quote (’), how will you specify this string? For example, the string is...
The format method Sometimes we may want to construct strings from other information as well. This is where the format() method is useful. age =...
Comments Comments are any text to the right of the #symbol and is very useful to the reader of the program. For example: print("hello world") #...