1 / 10

Starter

Starter Identify the separate tasks to be performed in the programming task below (break it down into numbered sections).

yeva
Download Presentation

Starter

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Starter • Identify the separate tasks to be performed in the programming task below (break it down into numbered sections). • A program is needed to prompt a user for their name and monthly wage. From this it should then calculate their yearly salary and yearly pension deductions (8% of their yearly salary). This summary should be written to file and displayed on screen.

  2. Python – Functions and Procedures Procedures If the same piece of code needs to be used several times we can use a loop - but only if those times are all together. If you need to run the same bit of code again later, you can use a procedure.

  3. Python - Procedures A Simple Procedure In this example I want to print the squares of the numbers from 1 to 20: #This is a procedure called output #It will print a given number and its square defoutput(number): print(number,"squared =",number*number) #This is the start of the main program number = 1 while number < 21: output(number) number = number + 1

  4. Python - Procedures Here the top two lines are a procedure called output. The procedure expects to be given one variable (which it calls number) and will happily do its thing when told to. The main program is underneath, and the line that says output(x) will run the output procedure and give it the variable x to work with.

  5. Python - Procedures Multiple Parameters A parameter is the variable (or variables) that get passed to the procedure. You can require more than one parameter: defoutput(number1,number2): print(number1,"+",number2,"=",number1+number2) for counter in range(20): number = counter**2 output(counter,number) You can pass as many parameters as you like to a procedure as long as you set it up correctly.

  6. Python - Procedures Optional Parameters Once you have defined a procedure, you can call it in a number of ways: defoutput(grade,score=50,feedback="Well done!"): print("You scored",score,"which is a grade",grade,feedback) output("C") output("A",87) output("E",12,"Rubbish!") You can pass as many (or few) of the parameters as you like - as long as they’re in the right order. This means you have to plan the procedure quite carefully.

  7. Python - Functions Functions So far our procedures have just printed an answer to the console. Sometimes a procedure will have to send some data back. This is called a return. Procedures that return something are called functions. In Python that isn’t a huge distinction, but in some programming languages it is very important. def calculate(number): newnumber= number / 100 return (newnumber) for counter in range(5,101,5): answer = calculate(counter) print(counter,"% = ",answer)

  8. Python - Functions Functions The line return(newnumber) passes the value of the newnumber variable back to the main program. The line y = caluclate(x) shows that the main program expects a value to be returned and has somewhere to store it.

  9. Python - Functions Modules There are some procedures already built in to Python (print, for example). Modules (sometimes known as libraries in other languages) are collections of extra procedures and functions that are pre-written. Try this program first. It won’t work, but I’m trying to prove a point (sqrt is short for square root): number = 49 answer = sqrt(49) print(answer) Now try this one: import math number = 49 answer = math.sqrt(49) print(answer) You can find a list of modules at http://docs.python.org/py3k/modindex.html

  10. Python - Functions Global Variables. When you want to use a variable as a global in a function – just declare it as follows defmult(x,y): global total total = x*y total = 0 mult(7,5) print(total)

More Related