Day 8

Day 8 was spent on expanding the knowledge of functions with parameters and arguments. We also learned about optimizing code by using this functionality and created an encryption / decryption script. I spend way more time on this lesson than calculated as I somehow couldn’t get my head around the logic to use.

Notes

functions with param (input)
def function(param_name):
    do(param_name)

paramater = param_name
argument = value

 

Comments are closed.