[Eric] no out put when print command is used with a comma at the
end
Detlev Offenbach
detlev at die-offenbachs.de
Sun Aug 13 14:22:14 BST 2006
On Sunday 06 August 2006 20:15, Farooq wrote:
> when i run the code i cant see the output of the second loop in which new
> line charactor should not be added
>
> for i in range (3):
> print 'with out comma '
>
>
> for i in range (3):
> print 'with comma ',
>
>
>
>
> thanks
> Syed Farooq Hasny
The debugger backend communicates with the IDE via a socket using a line
oriented protocol. This causes lines not ending in a newline to be delayed.
However, the stuff gets transmitted as soon as there is a newline in the
stream.
Detlev
--
Detlev Offenbach
detlev at die-offenbachs.de
More information about the Eric
mailing list