Re: [BangPypers] Need help for python coding

2013-03-27 Thread Jonathan Toomim
1. str is the name of a builtin type object. If you create a variable with that name, then you will be unable to access that builtin type while your variable remained in scope. This would mean that you would be unable to call str(42), for example. 2. Perhaps the csv module can be of use to you

Re: [BangPypers] Need help for python coding

2013-03-27 Thread Anand B Pillai
Hi, On Tue, Mar 26, 2013 at 11:41 PM, Kamalakar gs wrote: > Dear all, > I am newbie to coding.I want extract the data from text file which contains > text and tables.In a file i want to extract all "VON MISES" stress data > from a table.i wrote a code as below. but i dont know how to extract the

Re: [BangPypers] April month meetup

2013-03-27 Thread Anand B Pillai
Hi Krace, On Sun, Mar 24, 2013 at 1:24 AM, kracekumar ramaraju < kracethekingma...@gmail.com> wrote: > All, > > Siva informed me he is willing to handle 3 hours hands-on session about > getting started with Django next month. We need a venue which has power > socket and decent internet connecti

Re: [BangPypers] Python Monk - Learn Python in your browser

2013-03-27 Thread Anand B Pillai
On Tue, Mar 26, 2013 at 11:29 AM, Balachandran Sivakumar < benignb...@gmail.com> wrote: > > > I haven't gone through the entire book. But it would be nice to > have idiomatic programming intorduced as well. I find people(beginners > mostly, but others as well) looping through lists the "C-way