In this video, we go over 3 python functions practice questions. The practice questions are reproduced below!
1. Write a program using functions that takes in two numbers, multiplies them together, and prints the result back out to the user.
2. Write a program that uses functions to calculate any given number in the Fibonacci sequence (https://www.mathsisfun.com/numbers/fi....
Is there a way to optimize this using a data structure that we talked about previously?
3. Write a function that takes in two lists. The first list contains the value of a card (2 through 10 and then Jack, Queen, King, Ace). The second list contains the suit of the card. Calculate the total value of the cards passed in. Face cards are worth 10 points each and Aces are worth 1 point. Return the results back out to where the function was called.