"body": "def ${1:name}(${2:arg}):\n\t\"\"\"\n\tPurpose: $2\n\t\"\"\"\n\t$0\n# end def", "description": "Defining Function with argument" "def(one, two)": { "prefix ...
Defining a Function You can define functions to provide the required functionality. Here are simple rules to define a function in Python. Function blocks begin with the keyword def followed by the ...