Search Results

8
votes

Python “is” operator behaves unexpectedly with integers

As you can check here Python caches small ints for eficiency. Everytime you create a reference to a smal …
2
votes

What is the best book for learning about Algorithms?

How about a classic? Algorithms + Data Structures = Programs by Niklaus Wirth. …
1
vote

get list of tables, db schema, dump etc in Python sqlite3

Check out here for dump. It seems there is a dump function in the library sqlite3. …
0
votes

Close an easygui Python script with the standard ‘close’ button

I don't know right now, but have you tried something like this?: root.protocol('WM_DELETE_WINDOW', self.quit) or root.protocol('WM_DELETE_WINDOW' …