Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got some Perl code like this:

my $match = $matches{$key}
            ? "$matches{$key} was a match!"
            : "There was no match."

How is this best rewritten in Python? I'm trying to avoid getting a KeyError.

share|improve this question
Plzsendtehcodez. You can't synthesize these two answers? – S.Lott Mar 13 '09 at 18:38

1 Answer

up vote 3 down vote accepted

This.

message = "%s was a match"%(matches[key],) if key in matches else "There was no match."
share|improve this answer
Why is the , necessary in matches[key], ? – mike Mar 13 '09 at 18:44
Can I just say this? message = "%s was a match" % matches[key] if key in matches else "There was no match" – mike Mar 13 '09 at 18:45
The comma is not necessary. However, it's good style to always use a tuple as the right argument to % string formatting. – Benjamin Peterson Mar 13 '09 at 18:49
@Benjamin Peterson: just out of curiosity, why? – Brian R. Bondy Mar 13 '09 at 18:50
format % tuple is the standard form; (x,) is a singleton tuple. (x,y) is a two-tuple ("double"), (z,y,x) is a three-tuple ("triple"). Python can tolerate format % value IF (and only if) the value is not itself a sequence. Strings are sequences. So format % (string,) is usually required. – S.Lott Mar 13 '09 at 18:56
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.