Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Endorsements
Ranked #487
~26.8K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

9 Posted Topics

Member Avatar for Duki
Member Avatar for Dani
22
18K
Member Avatar for lewashby
Member Avatar for Gribouillis
0
512
Member Avatar for vegaseat

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 …

Member Avatar for vegaseat
1
3K
Member Avatar for J-M DESMETTRE

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, …

0
739
Member Avatar for stefh

[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 …

Member Avatar for stefh
0
688
Member Avatar for J-M DESMETTRE

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. …

Member Avatar for woooee
0
160
Member Avatar for donnyv
Member Avatar for J-M DESMETTRE
0
252
Member Avatar for sentinel123

Hello, For further information, take a look, at this thread ... [url]http://www.daniweb.com/forums/thread184037.html[/url]

Member Avatar for J-M DESMETTRE
0
793
Member Avatar for J-M DESMETTRE

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 # …

Member Avatar for orinbai
0
3K

The End.