jsm4...@gmail.com schrieb:
> Thanks Bearophile.
>
> I should have used a tutorial for Python 3.0
>
> I was reading tutorial for Python 2.5
Get Python 2.5 or 2.6, seriously. Python 3.0 is not (yet) supported by
most tutorials, third party extensions and books.
Christian
--
http://mail.python.or
Thanks Bearophile.
I should have used a tutorial for Python 3.0
I was reading tutorial for Python 2.5
On Dec 25, 11:58 pm, bearophileh...@lycos.com wrote:
> On Dec 25, 7:53 pm, jsm4...@gmail.com wrote:
>
>
>
> > IDLE 3.0>>> print "hello"
>
> > SyntaxError: invalid syntax (, line 1)>>> 3+3
> > 6
On Dec 25, 7:53 pm, jsm4...@gmail.com wrote:
> IDLE 3.0>>> print "hello"
>
> SyntaxError: invalid syntax (, line 1)>>> 3+3
> 6
> >>> var = 4
> >>> var = var*4
> >>> print var
>
> SyntaxError: invalid syntax (, line 1)
>
>
>
> Any idea on why I am getting this error.
> I have just started learning p
IDLE 3.0
>>> print "hello"
SyntaxError: invalid syntax (, line 1)
>>> 3+3
6
>>> var = 4
>>> var = var*4
>>> print var
SyntaxError: invalid syntax (, line 1)
>>>
Any idea on why I am getting this error.
I have just started learning python and I am stuck at first thing
itself.
Any help would be gr