Re: [OT]Another n00b: Removing the space in "print 'text', var"

2006-02-13 Thread Bruno Desthuilliers
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

Re: Another n00b: Removing the space in "print 'text', var"

2006-02-13 Thread Rick Zantow
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,

Re: Another n00b: Removing the space in "print 'text', var"

2006-02-13 Thread bruno at modulix
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

Re: Another n00b: Removing the space in "print 'text', var"

2006-02-12 Thread Felipe Almeida Lessa
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

Re: Another n00b: Removing the space in "print 'text', var"

2006-02-12 Thread Alex Martelli
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

Re: Another n00b: Removing the space in "print 'text', var"

2006-02-12 Thread Fredrik Lundh
"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

Another n00b: Removing the space in "print 'text', var"

2006-02-12 Thread HappyHippy
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