开发者

How to write string literals in Python without having to escape them?

开发者 https://www.devze.com 2023-02-04 18:32 出处:网络
Is there a way to declare a string variable in Python such开发者_运维知识库 that everything inside of it is automatically escaped, or has its literal character value?

Is there a way to declare a string variable in Python such开发者_运维知识库 that everything inside of it is automatically escaped, or has its literal character value?

I'm not asking how to escape the quotes with slashes, that's obvious. What I'm asking for is a general purpose way for making everything in a string literal so that I don't have to manually go through and escape everything for very large strings.


Raw string literals:

>>> r'abc\dev\t'
'abc\\dev\\t'


If you're dealing with very large strings, specifically multiline strings, be aware of the triple-quote syntax:

a = r"""This is a multiline string
with more than one line
in the source code."""


There is no such thing. It looks like you want something like "here documents" in Perl and the shells, but Python doesn't have that.

Using raw strings or multiline strings only means that there are fewer things to worry about. If you use a raw string then you still have to work around a terminal "\" and with any string solution you'll have to worry about the closing ", ', ''' or """ if it is included in your data.

That is, there's no way to have the string

 '   ''' """  " \

properly stored in any Python string literal without internal escaping of some sort.


You will find Python's string literal documentation here:

http://docs.python.org/tutorial/introduction.html#strings

and here:

http://docs.python.org/reference/lexical_analysis.html#literals

The simplest example would be using the 'r' prefix:

ss = r'Hello\nWorld'
print(ss)
Hello\nWorld


(Assuming you are not required to input the string from directly within Python code)

to get around the Issue Andrew Dalke pointed out, simply type the literal string into a text file and then use this;

input_ = '/directory_of_text_file/your_text_file.txt' 
input_open   = open(input_,'r+')
input_string = input_open.read()

print input_string

This will print the literal text of whatever is in the text file, even if it is;

 '   ''' """  “ \

Not fun or optimal, but can be useful, especially if you have 3 pages of code that would’ve needed character escaping.


Use print and repr:

>>> s = '\tgherkin\n'

>>> s
'\tgherkin\n'

>>> print(s)
    gherkin

>>> repr(s)
"'\\tgherkin\\n'"

# print(repr(..)) gets literal

>>> print(repr(s))
'\tgherkin\n'

>>> repr('\tgherkin\n')
"'\\tgherkin\\n'"

>>> print('\tgherkin\n')
    gherkin

>>> print(repr('\tgherkin\n'))
'\tgherkin\n'
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号