Re: [Tutor] unexpected list entry

2011-12-02 Thread Alan Gauld
On 02/12/11 15:52, surya k wrote: Could you please tell me a free python IDE (No Eclipse/ Netbeans) There are lots and IDEs are very personal choices. It depends what you want. Netbeans/eclipse are very heavyweight and have functionality overload. But lighweight IDEs like IDLE and Pythonwin

Re: [Tutor] unexpected list entry

2011-12-02 Thread Dave Angel
On 12/02/2011 11:48 AM, surya k wrote: Dave, I am now puzzled.. I don't understand but the list is now not showing unicode. I just restarted the IDE and rewrote the code again! however, I tried print repr(name1), it didn't show me any unicode notation. Well, since the symptom went away,

Re: [Tutor] unexpected list entry

2011-12-02 Thread surya k
-- From: "Dave Angel" Sent: Friday, December 02, 2011 9:36 PM To: "surya k" Cc: "Python Tutor" Subject: Re: [Tutor] unexpected list entry (You top-posted. Put your remarks AFTER whatever you quote from earlier m

Re: [Tutor] unexpected list entry

2011-12-02 Thread Walter Prins
Hi, On 2 December 2011 15:52, surya k wrote: > One more thing I want to mention.. > I think there is a problem in the IDE itself. I have faced some problems > with this IDE before... (Not with this) > It may be worth reporting those problems (what were they?), this is after all an open source pr

Re: [Tutor] unexpected list entry

2011-12-02 Thread Dave Angel
l" Sent: Friday, December 02, 2011 7:43 PM To: "surya k" Cc: "Python Tutor" Subject: Re: [Tutor] unexpected list entry On 12/02/2011 08:49 AM, surya k wrote: Hi, Just take a look at this small code.. I am just taking a string as input and assigning it as a lis

Re: [Tutor] unexpected list entry

2011-12-02 Thread surya k
uot; Sent: Friday, December 02, 2011 7:43 PM To: "surya k" Cc: "Python Tutor" Subject: Re: [Tutor] unexpected list entry On 12/02/2011 08:49 AM, surya k wrote: Hi, Just take a look at this small code.. I am just taking a string as input and assigning it as a list. But I am

Re: [Tutor] unexpected list entry

2011-12-02 Thread surya k
ver faced any problem like this -- From: "Dave Angel" Sent: Friday, December 02, 2011 7:43 PM To: "surya k" Cc: "Python Tutor" Subject: Re: [Tutor] unexpected list entry On 12/02/2011 08:49 AM, surya k wrote: Hi,

Re: [Tutor] unexpected list entry

2011-12-02 Thread Dave Angel
On 12/02/2011 08:49 AM, surya k wrote: Hi, Just take a look at this small code.. I am just taking a string as input and assigning it as a list. But I am finding an unexpected entry in the list.. Why this is happening? I am using PyScripter IDE. code : #!/usr/bin/env python def main():

Re: [Tutor] unexpected list entry

2011-12-02 Thread bob gailer
On 12/2/2011 8:49 AM, surya k wrote: Hi, Just take a look at this small code.. I am just taking a string as input and assigning it as a list. But I am finding an unexpected entry in the list.. Why this is happening? I am using PyScripter IDE. code : #!/usr/bin/env python def main(): pass if

[Tutor] unexpected list entry

2011-12-02 Thread surya k
Hi, Just take a look at this small code.. I am just taking a string as input and assigning it as a list. But I am finding an unexpected entry in the list.. Why this is happening? I am using PyScripter IDE. code : #!/usr/bin/env python def main(): pass if __name__ == '__main__': ma