Re: Newbie Need Help On Regex!

2016-10-10 Thread breamoreboy
On Monday, October 10, 2016 at 3:58:56 PM UTC+1, infos...@gmail.com wrote: > Hey guys! > > I am new to learning regex in python and I'm wondering how do I use regex in > python to store the integers(positive and negative) i want into a list! > > For e.g. > > This is the data in a list. > >

Newbie Need Help On Regex!

2016-10-10 Thread infosecflag
Hey guys! I am new to learning regex in python and I'm wondering how do I use regex in python to store the integers(positive and negative) i want into a list! For e.g. This is the data in a list. [u'\x1b[0m[\x1b[1m\x1b[0m\xbb\x1b[0m\x1b[36m]\x1b[0m (A=-5,B=5)', u'\x1b[0m[\x1b[1m\x1b[0m\xb

Newbie Need Help On Regex!

2016-10-10 Thread infosecflag
Hey guys! I am new to learning regex in python and I'm wondering how do I use regex in python to store the integers(positive and negative) i want into a list! For e.g. This is the data in a list. [u'\x1b[0m[\x1b[1m\x1b[0m\xbb\x1b[0m\x1b[36m]\x1b[0m (A=-5,B=5)', u'\x1b[0m[\x1b[1m\x1b[0m\xb

Re: Newbie. Need help

2013-07-08 Thread Joshua Landau
On 8 July 2013 13:05, Sandile Mnukwa wrote: > Hi Joshua, Hello. You replied off-list (to me only, not to Python-list). I imagine this was a mistake, so I'm posting to Python-list again. If this wasn't a mistake, then I apologize and suggest telling people when you mean to reply off-list. Also,

Re: Newbie. Need help

2013-07-08 Thread Alister
On Mon, 08 Jul 2013 01:53:06 -0700, Sanza101 wrote: > I just started using Python recently, and i need help with the > following: Please assist. > > 1.Create another function that generates a random number (You will have > to import the relevant library to do this) > 2.Create a function

Re: Newbie. Need help

2013-07-08 Thread Joshua Landau
On 8 July 2013 09:53, Sanza101 wrote: > I just started using Python recently, and i need help with the following: > Please assist. Rather than saying you want help with "Please assist", why don't you ask a question? I find when people start their post with "I need help, please help" they forget

Newbie. Need help

2013-07-08 Thread Sanza101
I just started using Python recently, and i need help with the following: Please assist. 1. Create another function that generates a random number (You will have to import the relevant library to do this) 2. Create a function that is called from the main function, that accepts a numbe

Re: newbie: Need Help Moving Data from Kirbybase to Gadfly

2006-04-11 Thread dc
The addresslist table was defined and did exist, I had connection defined incorrectly. -- http://mail.python.org/mailman/listinfo/python-list

Re: newbie: Need Help Moving Data from Kirbybase to Gadfly

2006-04-10 Thread dc
I have muddle through this and gotten my script to work. Corrected code attached. # get global modules for python import os import sys #get database manager module from kirbybase import KirbyBase, KBError # open a database, embedded db = KirbyBase() result=db.select('test2.tbl', ['recno'],['*'

newbie: Need Help Moving Data from Kirbybase to Gadfly

2006-04-10 Thread dc
I am fairly new to python and SQL. I have been trying to move data from Kirbybase table to a Gadfly table and cannot get it to work. Win XP with python 2.4, Kirbase 1.9, Gadfly B5. Complete script shown here, with python traceback. # get global modules for python import os import sys #get data