Login Password

snippets

Last 10 category snippets

0
favorites
0
comments
Avatar Image

Word List Python Script

A few of my projects have required a dictionary or word list. Here is a python script that gets the word list used for scrabble from the website: http://www.scraddle.com/wordfeud-dictionary/. You need a file on your C drive called wordlist.txt. This can be changed on the line: fOb = open('C:/wordlist.txt','w') The word list you get has just under 180000 words. Hope this might be useful to someone. ...
posted by declan 2 years, 4 months ago
0
favorites
2
comments
Avatar Image

Exporting a QTableWidget to a CSV File

This little piece of code exports a QTableWidget to a CSV File. The filename is stored in the QLineEdit, and the QTableWidget is passed as a parameter. No error checking, just quick and dirty. ...
posted by Alejandro Martinis 2 years, 7 months ago
0
favorites
2
comments
Avatar Image

Memorizer Decorator for accumulative lists

This decorator allows to optimize the calculus of some lists (with growing values, such as primes list) using previous executions. ...
posted by Andreu Correa Casablanca 2 years, 9 months ago
bettercodes.org is released as free software without warranties under GNU Affero GPL v3