Sorry for the vague question. I would like to create a string that uses a plural if count > 1. For that, I would like have an "inline" condition that returns 's' to concatenate to my noun.
print "The plural of plural is plural{0}. {1}".format( {'s' if count > 1}, "Isnt't it!?")