"Andrii V. Mishkovskyi" wrote in message
news:mailman.2185.1237467269.11746.python-l...@python.org...
On Thu, Mar 19, 2009 at 2:43 PM, Mr. Z wrote:
> I'm trying emulate a printf() c statement that does, for example
>
> char* name="Chris";
> int age=30;
>
I'm trying emulate a printf() c statement that does, for example
char* name="Chris";
int age=30;
printf("My name is %s", name);
printf("My name is %s and I am %d years old.", %s, %d);
In other words, printf() has a variable arguement list the we
all know.
I'm trying to do this in Python...
clas