3.12-3.13 Developing Procedures
What is a procedure?
A procedure is a named group of programming instructions
2 Main Types of Procedures:
- Procedure that returns a value of data
- Procedure that executes a block of statements
Learning Objective:
Be able to look at code and determine the purpose, and be able to write a procedure to manage complexity of program. understand the following terms and what they look like as well as how to use them in code
- Procedure Parameters: variables that are defined within the procedure’s parentheses and serve as placeholders for values that can be passed to the procedure when it is called, allowing the procedure to operate on different data or values each time it is executed.
- Procedure Algorithms: a step-by-step set of instructions that defines a specific task or operation to be performed within a computer program
- Procedure Return Values: data or results that a procedure can send back to the part of the program that called it, allowing the procedure to provide information or perform a specific task and then share the outcome with the rest of the program.
Name, Parameters, Algorithm, Return Values, and Calling a Procedure
## Example of Procedure that Updates A Quiz Grade
def updatequiz(currentgrade, quizgrade):
if quizgrade > currentgrade:
currentgrade = quizgrade
return currentgrade
currentgrade = 75
quizgrade = 88
currentgrade = updatequiz(currentgrade, quizgrade)
print(currentgrade)
88
Popcorn Hack #1:
Identify the name of the procedure below, tell us the purpose and parameters of the procedure and identify the algorithm return value:
- Name: updateweather
- Parameters: today is warmer than yesterday
- Algorithm (paste lines): currentweather> weather
- Return Value: currentgrade
- Calling Procedure Line: print(“the temperature right now is”, currentweather, “degrees”)
def updateweather(currentweather, weather):
if currentweather> weather:
weather = currentweather
print("today is warmer than yesterday")
else:
print("today is colder than yesterday")
return currentgrade
currentweather = 71
weather = 66
currentgrade = updateweather(currentweather, weather)
print("the temperature right now is", currentweather, "degrees")
today is warmer than yesterday
the temperature right now is 71 degrees
Costructing Classes for Names & Data with Procedures
# Class Construction
class Short:
name = ""
height = 0
class Tall:
name = ""
height = 0
# Procedure to Classify as Short or Tall
def classify_person(name, height):
if height < 70:
short_person = Short()
short_person.name = name
return short_person
else:
tall_person = Tall()
tall_person.name = name
return tall_person
Class Definitions: The code defines two classes, “Short” and “Tall,” each having two attributes: name and height. These attributes can be used to store the name and height of individuals.
Classification Procedure: The classify_person function takes two parameters: name and height. Depending on the provided height, it creates an instance of either the “Short” or “Tall” class. It sets the name attribute for the person and returns the corresponding instance.
Popcorn Hack #2:
Use the example above to use a procedure to create two classes of your choosing. Create at least 2 objects and class them with your procedure
# Popcorn Hack 2
# Class Construction
class Poor:
name = "Miles"
money = 63
class Rich:
name = "Mark"
money = 83
# Procedure to Classify as Short or Tall
def classify_person(name, money):
if money < 70:
poor_person = Poor()
poor_person.name = name
return poor_person
else:
rich_person = Rich()
rich_person.name = name
return rich_person
Calling Methods of an Object w/ Procedures
# Creating Classes
class Short:
name = ""
height = 0
class Tall:
name = ""
height = 0
#Procedure to classify as short or tall
def classify_height(name, height):
if height < 70:
short_person = Short()
short_person.name = name
return short_person
else:
tall_person = Tall()
tall_person.name = name
return tall_person
# Create objects and classify them as short or tall
person1 = classify_height("Nihar", 70)
person2 = classify_height("Will", 76)
person3 = classify_height("Jayden", 75)
person4 = classify_height("Howie", 60)
# Display results for all four objects
for person in [person1, person2, person3, person4]:
print(f"{person.name} is {'Short' if person is Short else 'Tall'}.")
Nihar is Tall.
Will is Tall.
Jayden is Tall.
Howie is Tall.
HW Hacks!!
- Create a procedure that replaces a value with a new one (ex. update height)
- Create a procedure that constructs classes of your choosing and create at least 4 objects to be sorted into your classes. Call your procedure to display your objects.
# HW Hack 1
def updatespeed(currentspeed, maxspeed):
if maxspeed > currentspeed:
currentspeed = maxspeed
return currentspeed
currentspeed = 33
maxspeed = 388
currentspeed = updatespeed(currentspeed, maxspeed)
print(currentspeed)
388
# HW Hack 2
class Underweight:
name = ""
weight = 0
class Overweight:
name = ""
weight = 0
# Procedure to classify as underweight or overweight
def classify_weight(name, weight):
if weight < 70:
underweight_object = Underweight()
underweight_object.name = name
underweight_object.weight = weight # Set the weight property
return underweight_object
else:
overweight_object = Overweight()
overweight_object.name = name
overweight_object.weight = weight # Set the weight property
return overweight_object
# Create objects and classify them as underweight or overweight
obj1 = classify_weight("Car", 69)
obj2 = classify_weight("Goafer", 36)
obj3 = classify_weight("Bedframe", 58)
obj4 = classify_weight("Nikocado Avocado", 1000)
# Display results for all four objects
for obj in [obj1, obj2, obj3, obj4]:
print(f"{obj.name} is {'Underweight' if isinstance(obj, Underweight) else 'Overweight'}. Weight: {obj.weight}")
Car is Underweight. Weight: 69
Goafer is Underweight. Weight: 36
Bedframe is Underweight. Weight: 58
Nikocado Avocado is Overweight. Weight: 1000
Reflection
- Developing Procedures is all about classing and objects and then using them to sort items in catagories.