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