Tagged Questions

4
votes
2answers
829 views

In Python, what does preceding a string literal with “r” mean?

I first saw it used in building regular expressions across multiple lines as a method argument to re.compile, so I assumed that "r" stands for regex. For example: regex = re.compile( r'^[A-Z]' ...
4
votes
4answers
346 views

What's the u prefix in a python string

Like in: u'Hello' My guess is that it indicates "unicode", is it correct? If so, since when is it available?
3
votes
2answers
3k views

Tricky Python string literals in passing parameter to timeit.Timer() function

I'm having a hard time with the setup statement in Python's timeit.Timer(stmt, setup_stmt). I appreciate any help to get me out of this tricky problem: So my sniplet looks like this: def ...
2
votes
2answers
175 views

Special Character problem in regexp by python

I apply some regular expression on xml file to find and replace values. Normally it works.(I heard the voices saying "use xml parsers". Meanwhile I can not.) But if there is a special character in the ...
1
vote
2answers
96 views

Pyschool Quiz--String Concatenation

Here's the quiz question: Adding two strings or making multiple copies of the same string. Examples: greetings = "Hello World" len(greetings) # get the length of string 11 ...
1
vote
1answer
82 views

In python how do you deal with other encodings in domain names

I'm trying to parse domain names from the Message-ID field of an email that's been loaded from a file and compare it to the domain of the from field to see how well it matches up. Then I compare the ...
1
vote
2answers
793 views

how to access sys.argv (or any string variable) in raw mode?

I'm having difficulties parsing filepaths sent as arguments: If I type: os.path.normpath('D:\Data2\090925') I get 'D:\\Data2\x0090925' Obviously the \0 in the folder name is upsetting the ...
1
vote
3answers
909 views

comparing two strings with 'is' — not performing as expected

I'm attempting to compare two strings with is. One string is returned by a function, and the other is just declared in the comparison. is tests for object identity, but according to this page, it also ...