Author terry.reedy
Recipients
Date 2005-02-17.01:09:28
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=593130

x = int() does not 'declare' x.  It binds it to the result of 
calling int without any arguments, which is 0.
>>> int()
0
So it is the same as x = 0.

Various ideas about declarations and finding typos have been 
discussed on comp.lang.python and elsewhere.  You might 
review some of the c.l.p threads, possibly via Google.
History
Date User Action Args
2007-08-23 16:10:23adminlinkissue1122279 messages
2007-08-23 16:10:23admincreate