Shell Code wrote:
> Hi,i want to submit an error in python for windows version 3.3.0.When
> i try to run simple code (exp: print "Hello";) .Interpreter returns me
> a message box wich said : (Invalid sytnax!) Now i downloaded version
> 2.7.3 and code works perfect now. 

Allow me to offer you some unsolicited advice.  When you are just
starting out, NEVER assume that the problem is a bug in your tools.  The
"print" statement/function is absolutely fundamental to Python, and
Python has a huge user base.  If it were broken, it would have been
addressed long before you saw it.

You do know that the semicolon you have there (  print "Hello"; ) is not
needed in Python, right?  This is not C.

-- 
Tim Roberts, t...@probo.com
Providenza & Boekelheide, Inc.

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to