diff options
author | Puneeth Chaganti | 2010-05-15 10:47:35 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2010-05-15 10:47:35 +0530 |
commit | 1199e1d43a8b23144b516a7425c20b8bbf36723d (patch) | |
tree | e8de26fe1fcfb9c40ce5464e960b29081bd57402 | |
parent | 6bb546958c755dfe7f5301213764c441ccd1f991 (diff) | |
download | st-scripts-1199e1d43a8b23144b516a7425c20b8bbf36723d.tar.gz st-scripts-1199e1d43a8b23144b516a7425c20b8bbf36723d.tar.bz2 st-scripts-1199e1d43a8b23144b516a7425c20b8bbf36723d.zip |
A minor edit to see if commits are working.
-rw-r--r-- | functions_.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions_.txt b/functions_.txt index b0d8e67..7d1539e 100644 --- a/functions_.txt +++ b/functions_.txt @@ -9,5 +9,5 @@ Lets look at how to write functions by writing one out . We have given the function the name signum . Essentially what it does is that based on whether the no is 0 , negative or positive , it returns 0 , -1 and +1 respectively . In this case it recieves value of the no in variable r . -In the beginning of the function you can see a triple quoted string . This is called a docstring . You can write some documentation related to your function. In this you can have the function parameters and what it returns . A python function returns a value by using the keyword return . +In the beginning of the function you can see a triple quoted string . This is called a docstring. You can write some documentation related to your function. In this you can have the function parameters and what it returns. A python function returns a value by using the keyword return. |