From 0451769084d1e8a4e5899603705cf12006d9b761 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Fri, 16 Feb 2018 11:18:03 +0000 Subject: [PATCH] Functions are introduced in first practical - turned introduction in file management prac into a "refresher" --- getting_started/03_file_management.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/getting_started/03_file_management.md b/getting_started/03_file_management.md index 614425b..10b9f04 100644 --- a/getting_started/03_file_management.md +++ b/getting_started/03_file_management.md @@ -346,9 +346,12 @@ def whatisit(path, existonly=False): ``` -> This is the first time in this series of practicals that we have defined our -> own function, [hooray!](https://www.youtube.com/watch?v=zQiibNVIvK4) All -> function definitions in Python begin with the `def` keyword: +> This is the first time in a while that we have defined our own function, +> [hooray!](https://www.youtube.com/watch?v=zQiibNVIvK4). Here's a quick +> refresher on how to write functions in Python, in case you have forgotten. +> +> First of all, all function definitions in Python begin with the `def` +> keyword: > > ``` > def myfunction(): @@ -424,10 +427,10 @@ print('Directory and base names: {}'.format(op.split( path))) ``` -> Note here that `op.split` returns both the directory and base names - it is -> super easy to define a Python function that returns multiple values, simply by -> having it return a tuple. For example, the implementation of `op.split` might -> look something like this: +> Note here that `op.split` returns both the directory and base names - remember +> that it is super easy to define a Python function that returns multiple values, +> simply by having it return a tuple. For example, the implementation of +> `op.split` might look something like this: > > > ``` -- GitLab