python-snippets
python-snippets copied to clipboard
:100: The most useful python snippets
https://github.com/progrmoiz/python-snippets/blob/8d24dd5874d9e931f205b4ea700c974f60112307/scramble.py#L7 ```python In[18]: scramble([1, 2, 3, 4, 5]) Out[18]: [[2, 3, 4, 5, 1], [2, 3, 4, 5, 1], [2, 3, 4, 5, 1], [2, 3, 4, 5, 1], [2,...
https://github.com/progrmoiz/python-snippets/blob/8d24dd5874d9e931f205b4ea700c974f60112307/formats.py#L25 ```python In[16]: for test in (0, 1, -1, 1.23, 1., 1.2, 3.1341): ...: print(f'${test:.2f}') ...: $0.00 $1.00 $-1.00 $1.23 $1.00 $1.20 $3.13 ```