num1Int= 2
num2Int= 3
console.log(num1Int+num2Int)
float1=6.4
float2=3.7
console.log(float1*float2)
message1= "We need to make"
message2= " a message for this"
console.log(message1+message2)
3.12 Parts of a Procedure:
Procedures are named sets of instructions (also called methods or functions). Parameters are input values. A procedure call interrupts program flow, executing the procedure, and then continuing. Procedures simplify code by reusing instructions.
Popcorn Hack 1:
Explains return values and output parameters.
Popcorn Hack 2:
Create a Python program for generating multiplication tables.
Anatomy of Python Classes:
Class definition with attributes, methods, constructor, and self.