Rick Zantow a écrit :
> bruno at modulix <[EMAIL PROTECTED]> wrote in
> news:[EMAIL PROTECTED]:
>
>
>>HappyHippy wrote:
>>
(snip)
>>>eg.
>>>strName = 'World'
>>>print 'Hello', strName, ', how are you today?'
>>
>>Already got an anwser, now just a coding-style suggestion: hungarian
>>notation is
bruno at modulix <[EMAIL PROTECTED]> wrote in
news:[EMAIL PROTECTED]:
> HappyHippy wrote:
>> More of a minor niggle than anything but how would I remove the
>> aforementioned space?
>
>
>> eg.
>> strName = 'World'
>> print 'Hello', strName, ', how are you today?'
>
>
> Already got an anwser,
HappyHippy wrote:
> More of a minor niggle than anything but how would I remove the
> aforementioned space?
> eg.
> strName = 'World'
> print 'Hello', strName, ', how are you today?'
Already got an anwser, now just a coding-style suggestion: hungarian
notation is *evil*. And even *more* evil wi
Em Dom, 2006-02-12 às 22:11 +, HappyHippy escreveu:
> More of a minor niggle than anything but how would I remove the
> aforementioned space?
>
> eg.
> strName = 'World'
> print 'Hello', strName, ', how are you today?'
>
> comes out as "Hello World , how are you today?"
strname = 'World'
pr
HappyHippy <[EMAIL PROTECTED]> wrote:
> More of a minor niggle than anything but how would I remove the
> aforementioned space?
>
> eg.
> strName = 'World'
> print 'Hello', strName, ', how are you today?'
>
> comes out as "Hello World , how are you today?"
>
> Have googled, and worked my way t
"HappyHippy" wrote:
> More of a minor niggle than anything but how would I remove the
> aforementioned space?
>
> eg.
> strName = 'World'
> print 'Hello', strName, ', how are you today?'
>
> comes out as "Hello World , how are you today?"
>
> Have googled, and worked my way through the first 7 cha
More of a minor niggle than anything but how would I remove the
aforementioned space?
eg.
strName = 'World'
print 'Hello', strName, ', how are you today?'
comes out as "Hello World , how are you today?"
Have googled, and worked my way through the first 7 chapters of Byte of
Python, but to no a