commit b2f98303e6bd3905244e307c7ed70f3fb7e417b1 parent 67253492ca8c3668172000552663754d4d16a9c9 Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe> Date: Mon, 24 Apr 2023 09:38:50 -0500 Added one python ultisnippet Diffstat:
| M | UltiSnips/python.snippets | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/UltiSnips/python.snippets b/UltiSnips/python.snippets @@ -410,3 +410,9 @@ end = time.perf_counter() print(f"It took: {end - start:.2f}s") $0 endsnippet + + +snippet iterrows "pandas iterrows bucle" b +for i_$1, row_$1 in df_${1}.iterrows(): + ${2:${VISUAL:pass}} +endsnippet