If you run setup, a config file is created at ~/JoinPython.json with your device and contact data. This allows you to omit certain arguments (--apikey, --deviceId, etc.) when running the program. If ...
Join actions should be provided as a dictionary. Each key is an action name, and each value is a list of the custom inputs. Use None for no custom input. For example: ...
Why is #Python 's join () a STRING method, not a list method? x = 'this is a test'.split () '*'.join (x) ':::'.join (x) Not: x.join ('*') Why not? The argument can be any string-returning iterable: '* ...
I love those unexpected "Huh, I didn't know that" moments, especially when they pop up in random conversations on Mastodon. Recently, I had one about Python—a language I've been coding in for 5 years, ...