summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/python-mode/for
blob: 0033c8756127a2086bfe8b8bdc1d00e700f4a01d (plain)
1
2
3
4
5
6
# name: for ... in ... : ...
# key: for
# group : control structure
# --
for ${var} in ${collection}:
    $0