Viewing articles tagged “Escaping text in Python”
In Python, a string becomes a raw string if it is prefixed with "r" or "R" before the quotation symbols. Hence 'Hello' is a normal string…