Re: python project ideas
On Oct 25, 5:09 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hi to everyone > I wondered if this might be the right place to ask for some ideas for > python project for university. > I'd like it to be something useful and web-based. And the project must > be complete in 2-3 months by 2-3 person group. > May be something useful for open source or python community ... > Well, just post what you think could be appropriate ... Rewrite moodle in python?:) -- http://mail.python.org/mailman/listinfo/python-list
Re: Readline and record separator
On Oct 30, 12:21 pm, Johny <[EMAIL PROTECTED]> wrote: > Is it possible to change record separator when using readline? > As far as I know readline reads characters until found '\n' and it is > the end of record for readline. > My problem is that my record consits several '\n' and when I use > readline it does NOT read the whole my record. > So If I could change '\n' as a record separator for readline, it > would solve my problem. > Any idea? > Thank you > L. I'm not aware any such a method. But what you could do is simply read all of them(readlines()) and then split it(delimeter would be your new line) -- http://mail.python.org/mailman/listinfo/python-list
