Re: import sqlite3

2009-06-05 Thread Philip Semanchuk
On Jun 4, 2009, at 7:45 AM, willgun wrote: By the way ,what does 'best regards' means at the end of a mail? regards is just respectful (and slightly formal) goodbye. Have a look at the definition: http://dictionary.reference.com/search?q=regards It's used much more in written

Re: import sqlite3

2009-06-05 Thread willgun
Mark Tolonen 写道: willgun will...@live.cn wrote in message news:h08c5e$au...@news.cn99.com... By the way ,what does 'best regards' means at the end of a mail? I think 恭祝 may be a good translation. -Mark O(∩_∩)O谢谢 Glad to meet a foreigner know Chinese, :-) . But in my opinion,恭祝 means

Re: import sqlite3

2009-06-05 Thread willgun
Gabriel Genellina 写道: En Thu, 04 Jun 2009 03:14:18 -0300, willgun will...@live.cn escribió: I'm a student from China.It's painful for us to read python documentation entirely due to poor english.So I often make these mistakes. Try chinese python group at Google - I see some promising

Re: import sqlite3

2009-06-04 Thread Andrew McNamara
On 04/06/2009, at 3:15 PM, willgun wrote: When i run the following in IDLE: IDLE 2.6.1 import sqlite3 con =sqlite3.connect (r'g:\db1') everything goes well,but when i save these to a .py file and run it: Traceback (most recent call last): File C:\Users\hp\Desktop\SQLite3\sqlite3.py,

Re: import sqlite3

2009-06-04 Thread willgun
Gabriel Genellina 写道: En Thu, 04 Jun 2009 02:15:39 -0300, willgun will...@live.cn escribió: Traceback (most recent call last): File C:\Users\hp\Desktop\SQLite3\sqlite3.py, line 2, in module import sqlite3 File C:\Users\hp\Desktop\SQLite3\sqlite3.py, line 3, in module

Re: import sqlite3

2009-06-04 Thread willgun
Andrew McNamara 写道: On 04/06/2009, at 3:15 PM, willgun wrote: When i run the following in IDLE: IDLE 2.6.1 import sqlite3 con =sqlite3.connect (r'g:\db1') everything goes well,but when i save these to a .py file and run it: Traceback (most recent call last): File

Re: import sqlite3

2009-06-04 Thread willgun
Andrew McNamara 写道: On 04/06/2009, at 4:14 PM, willgun wrote: What did you call the .py file? sqlite3.py? If so, you've just imported your own module again. 8-) After the import, try print sqlite3.__file__, which will tell you where the module came from. Thank you all the same. I'm a

Re: import sqlite3

2009-06-04 Thread willgun
By the way ,what does 'best regards' means at the end of a mail? -- http://mail.python.org/mailman/listinfo/python-list

Re: import sqlite3

2009-06-04 Thread Andrew McNamara
On 04/06/2009, at 9:45 PM, willgun wrote: By the way ,what does 'best regards' means at the end of a mail? The correspondent is wishing you well. You'll also see things like kind regards, best wishes and so on. Regard essentially means respect. --

Re: import sqlite3

2009-06-04 Thread pdpi
On Jun 4, 12:45 pm, willgun will...@live.cn wrote: By the way ,what does 'best regards' means at the end of a mail? regard means roughly care. Its use as best regards closing a letter (or, in this case, email), means that you care for the person you're saying goodbye to. It's just a polite way

Re: import sqlite3

2009-06-04 Thread Gabriel Genellina
En Thu, 04 Jun 2009 03:14:18 -0300, willgun will...@live.cn escribió: I'm a student from China.It's painful for us to read python documentation entirely due to poor english.So I often make these mistakes. Try chinese python group at Google - I see some promising results at least... --

Re: import sqlite3

2009-06-04 Thread Mark Tolonen
willgun will...@live.cn wrote in message news:h08c5e$au...@news.cn99.com... By the way ,what does 'best regards' means at the end of a mail? I think 恭祝 may be a good translation. -Mark -- http://mail.python.org/mailman/listinfo/python-list

Re: import sqlite3

2009-06-03 Thread Gabriel Genellina
En Thu, 04 Jun 2009 02:15:39 -0300, willgun will...@live.cn escribió: Traceback (most recent call last): File C:\Users\hp\Desktop\SQLite3\sqlite3.py, line 2, in module import sqlite3 File C:\Users\hp\Desktop\SQLite3\sqlite3.py, line 3, in module con=sqlite3.connect(r'g:\db1')