1
vote
2answers
44 views
Meta and # in a UK mac terminal
In the mac terminal application there is a setting (preferences -> keyboard) that lets you set "use option as meta key". This is useful as a lot of unix boxes use bash as default shell …
1
vote
How to convert a list of longs into a comma separated string in python
Just for the sake of it, you can also use string formatting:
",".join("%s" % i for i in list_of_things)
…
