See More

# example of %r and %s def string_text(): num = 10 ngo_numbers = "There are %d no of ngo in india" % 10 print "I said %r" % ngo_numbers print "%s" % ngo_numbers x = "I lost my pen...." y = "I lost my wallet " print x+y