"Ximo" wrote:

> I am doing a interpret of lines and it show me a prompt, and I want if I
> write a declaration as "int a" my progrtam return de prompt and nothing
> more, for exemple:
>
> >>> 2+2
> 4
> >>> int a
> >>>
>
> Then I'm finding that de function which execute "int a" return me nothing,
> and no
>
> >>> int a
> None
> >>>

what Python version are you using?  here's what a normal Python
interpreter is supposed to do with your example:

>>> 2+2
4
>>> int a
  File "<stdin>", line 1
    int a
        ^
SyntaxError: invalid syntax
>>>

</F>



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

Reply via email to