- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Electronics, programming
- Interests
- Archaeology, cooking, schnauzers
- PC Specs
- Windows
9 Posted Topics
Re: Fresh spaghetti with bolognese sauce and red Bordeaux wine ... | |
Re: Hi, ReportLab might be interesting for your needs : http://www.reportlab.com/ | |
Re: Hi, Example reading the data from a "csv_str.csv" file: # convert to a list of records record_list = [] with open ("csv_str.csv",'r') as fi: reader = csv.reader(fi,delimiter=',') for line in reader: name, age, weight, seniority, pay = line record = Persons(name, age, weight, seniority, pay) record_list.append(record) Don't forget to import … | |
Hi, I've posted two scripts that I would like to improve. The first one (SparePartsDemo.py) is a little utility that takes a .csv (.txt) data file exported from another application, builds a SQLite database,performs a request to select and sort records and write the results to a sqlite database file, … | |
Re: [QUOTE=stefh;1483285]Hi there, my name is Stéphane, i'm french and a beginner with Python... I've registered on a french forum about Python to ask a question regarding an issue i have with a code, but it seems the members of this forum are not active. I paste the message i posted … | |
Hi folks, I've got a little problem with my queries in sqlite3. I need to select 'brands' (a, b, c, ...) for a 'date' YYYY-MM-DD from my table. As you can see in my script, I'm able to build a query by passing 'selectedDate' or 'selection', but not both values. … | |
Re: For the .dbf, take a look at the following link : [url]www.fiby.at/dbfpy/[/url] | |
Re: Hello, For further information, take a look, at this thread ... [url]http://www.daniweb.com/forums/thread184037.html[/url] | |
Hi, I wrote this sample code to check the integrity of an IBAN (International Bank Account Number) bank account number. (See Wikipedia for further information) Any advice to simplify this? [code=python] # # IBAN_Check.py # Utility to check the integrity of an IBAN bank account No. # Python 2.5.1 # … |
The End.