"A D" <[EMAIL PROTECTED]> wrote:

>> print "You may pass,", s
>
> at this print line you need to do
> print "you may pass, %s" % s
>
> this will allow you to enter the string s into the output sentence

where did you buy your python license ?

    >>> s = "josh"
    >>> print "hello,", s
    hello, josh
    >>> print "hello, %s" % s
    hello, josh

</F> 



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to