Python Indentation

Python Indentation

Popular programming languages like C, C++, C#, and Java use the curly brackets {} in order to define code blocks for namespaces, for, while, function, and related implementation. Python has a bit different mechanism to define code blocks which are called indentation. Indentation Indentation is creating Python code blocks by using spaces to the left. … Read more

Python Escape Characters

Python Escape Characters

The escape character is used to invoke alternative interpretations for the specified character set. Escape characters behave differently than their normal meaning and generally consist of two or more characters. Python provides different characters that are generally available in other popular programming languages in strings. Escape characters are only used inside a string. Escape characters … Read more