[Tutor] String Replacement Question

Kinuthia Muchane muchanek at gmail.com
Wed May 21 15:42:11 CEST 2008


>>> st = "String"
>>> print "%s " %st*3
String String String
>>>

Does this help?

Kinuthia...

-----------------------------

Message: 6
Date: Wed, 21 May 2008 15:05:21 +0530
From: Faheem <faheem at atlantiscomputing.com>
Subject: [Tutor] String Replacement question
To: tutor at python.org
Message-ID: <20080521150521.604437d8 at atlantiscomputing.com>
Content-Type: text/plain; charset=US-ASCII

Hi all,
  How do I replace the same value multiple times without repeating the
same variable name/value repeatedly?
for ex.

  some = 'thing'
  print '%s %s %s %s' % (some,some,some,some)

in this case, my question is how do i replace "% (some,some,some)" with
something more concise?

thanks in advance,
Faheem



More information about the Tutor mailing list