Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
883 views
in Technique[技术] by (71.8m points)

string - Unknown python expression filename=r'/path/to/file'

I found this potentially very useful python script, but came across these expressions which I've never seen before:

inputfilename = r'/path/to/infile'
outputfilename = r'/path/to/outfile'

I can't find a way to search for it. what does the r'...' do?

Thanks for your help!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The r'..' string modifier causes the '..' string to be interpreted literally. That means, r'MyPathWithoutEscaping' will evaluate to 'MyPathWithoutEscaping' - without causing the backslash to escape characters. The prior is equivalent to 'My\Path\Without\Escaping' string, but without the raw modifier.

Note: The string cannot end with an odd number of backslashes, i.e r'BadStringExample' is not a correct string.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...