Bored.

2009-11-30 Thread Necronymouse
Hello, I am learning python for about 2 years and I am bored. Not with python but I have a little problem, when i want to write something I realise that somebody had alredy written it! So i don´t want to make a copy of something but i wanna get better in python skills. Don´t you know what I should

Re: Bored.

2009-12-02 Thread Necronymouse
Thanks for reaction, I will prohably choose some project as you said... -- http://mail.python.org/mailman/listinfo/python-list

problem with re.MULTILINE

2009-10-18 Thread Necronymouse
Hello i ´ve got a little problem: I ´ve this text: http://openpaste.org/en/secret/17343/pass-python and I need to parse it. So i wrote this: >>> patternNode = re.compile(""" # Node (\w*).* (.*)""", re.MULTILINE) with open("test.msg", "r") as file: testData = file.read() for Node in re.finda

Re: problem with re.MULTILINE

2009-10-18 Thread Necronymouse
On 18 říj, 21:20, MRAB wrote: > Necronymouse wrote: > > Hello i ´ve got a little problem: I ´ve this text: > >http://openpaste.org/en/secret/17343/pass-pythonand I need to parse > > it. So i wrote this: > > > patternNode = re.compile(""" > > #