Thank You!
On Tue, Dec 23, 2008 at 3:49 AM, Steve Holden wrote:
> Chris Rebert wrote:
> > On Mon, Dec 22, 2008 at 10:19 PM, Paulo Repreza
> wrote:
> >> Hi,
> >>
> >> I'm a newbie with python and I recently bought Beginning with Python
> (Which
> >> is a book I recommend) but the problem that I
Chris Rebert wrote:
> On Mon, Dec 22, 2008 at 10:19 PM, Paulo Repreza wrote:
>> Hi,
>>
>> I'm a newbie with python and I recently bought Beginning with Python (Which
>> is a book I recommend) but the problem that I'm facing it's the following:
>>
>> This is the code:
>>
>> #!/usr/bin/python2.5
>>
On Mon, Dec 22, 2008 at 10:19 PM, Paulo Repreza wrote:
> Hi,
>
> I'm a newbie with python and I recently bought Beginning with Python (Which
> is a book I recommend) but the problem that I'm facing it's the following:
>
> This is the code:
>
> #!/usr/bin/python2.5
> # Filename: str_format.py
>
> a
Hi,
I'm a newbie with python and I recently bought Beginning with Python (Which
is a book I recommend) but the problem that I'm facing it's the following:
*This is the code:
*
#!/usr/bin/python2.5
# Filename: str_format.py
age = 25
name = 'foobar'
print('{0} is {1} years old'.format(name, age))