Skip to content

Instantly share code, notes, and snippets.

Python Dictionary Guide

Couple of notes:

  • If you want to get a better feel for how these things work, I highly recommend starting an interactive Python shell and trying these things out for yourself.
  • If you have any questions or feedback on anything in this guide, feel free to ping me on Discord and I'll be happy to respond!

Table of Contents

## Modified commands
alias diff='colordiff' # requires colordiff package
alias grep='grep --color=auto'
alias more='less'
alias df='df -h'
alias du='du -c -h'
alias mkdir='mkdir -p -v'
alias nano='nano -w'
alias ping='ping -c 5'