Skip to content
Snippets Groups Projects
Commit f1371b04 authored by cprutean's avatar cprutean
Browse files

Delete FunctionsAndLists.ipynb

parent e980e07a
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
We have seen in that functions basically *do what you expect*, and in
particular the variables *inside* the function are seperate from those
in the program. This is true for the basic build-in types (, , and ),
but you have to be *very careful* when you pass s into functions.
Consider what happend in the following code where the function sets a
given with random numbers.
def set_random_list(lst): """ Function to set a list full of random
numbers. """ for i in range(0,len(lst)): lst\[i\] = random.random()
def main(): xdata = \[0.0\]\*100 set_random_list(xdata)
main()
Now consider what happens,
- in the program we create a list of 100 s, all set to zero,
- then this is passed to the function the is sent to the function,
- inside the function the data *held* in the is the same as the data
in the , so if you change the values of the elements of the list
inside then they *will* change in .
- in , after the call to the *elements* of the list will be set to
random numbers.
This operation of functions *is* typically what you want to happen, but
you have to be very careful that you really intend to modify the
contents of a list inside the function.
The way that numbers operate need a bit of through on how they work, if
you have a function as below that a ,
def complex_value_compare( a , b): if a.real \> b.real and a.imag \>
b.imag: return a + b else: return a - b
then this will work exactly as you expect and you can *read* the real
and imaginary parts of the arguments with the and syntax. *BUT* beacuse
of the way the number is passed you are not able to write to the real
and imaginary parts by this route, this means that althought a complex
number looks like a of two numbers, it cannot be changed inside a
function.
webonly
The There is a variant on the list called a which holds multiple
elements just like a , is indexed by the same syntax for read *but*
cannot be wrtten to, so its values are *fixed*. This is not frequently
used in normal *user* programs, but is used inside complex libraries to
implement constants.
You have now completed sufficient to attempt which is the last
checkpoint of the course.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment