Raw strings in Python
In this article, we are going to learn about raw strings in Python. Raw strings in Python are created by prefixing the string literal with ‘r’ or ‘R’. The useful thing about the raw string in Python is that the raw strings treat backslash as a literal character. This is useful at times, when we […]
Raw strings in Python Read More »