Explain other string literals?
Answer / Mohd. Ilyas Ansari
In addition to single quotes and double quotes, Python also supports raw strings. Raw strings are denoted by an 'r' or 'R' before the opening quote, which disables backslashes from their special meanings. For example: r'n', or R'raw string with
'.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why does python use self?
What are class methods in python?
How to send an email in Python?
What is the key difference between a list and the tuple?
What is the use of negative indices?
What is web scraping?
Differentiate between Pyramid, Django, and Flask
How can you declare the variables function in python?
How will you sort a list?
Do python functions need return?
How will you remove an object from a list?
How does Python’s list.sort work at a high level? Is it stable? What’s the runtime?