Beyond the warm, fuzzy feelings folks get by supporting the work I do, here's a quick list (with handy-dandy links) of some of the exclusives and perks you get when becoming a Supporter here at Lunduke.Locals.com:
-- Issue #1 - https://lunduke.locals.com/post/235263/the-lunduke-journal-issue-1
-- Issue #2 - https://lunduke.locals.com/post/258254/the-lunduke-journal-issue-2
-- Issue #3 - https://lunduke.locals.com/post/284255/the-lunduke-journal-issue-3
Unlimited Access to The House of Lunduke BBS:
https://lunduke.locals.com/post/264191/the-house-of-lunduke-bbs-is-back-on-line
Awesome Masculinity, Computers, & You:
https://lunduke.locals.com/upost/305439/awesome-masculinity-computers-you
Linux Sucks 2019 - "The Lost Recordings":
https://lunduke.locals.com/post/87413/linux-sucks-2019-the-lost-recordings
Linux Sucks 2016 - "The Commentary Track":
...
The not so good way to do things in Python:
>>> a = [['_']*3]*3
>>> a
[['_', '_', '_'], ['_', '_', '_'], ['_', '_', '_']]
>>> a[1][0] = 'X'
>>> a
[['X', '_', '_'], ['X', '_', '_'], ['X', '_', '_']]
And the good one:
>>> a = [['']*3 for i in range(3)]
>>> a
[['', '', ''], ['', '', ''], ['', '', '']]
>>> a[1][0] = 'X'
>>> a
[['', '', ''], ['X', '', ''], ['', '', '']]
>>>