Create the following functions. Don’t forget the design recipe! I’ll be looking for the following:
- Signature, purpose, stub
- Examples
- Template
- 
Create a function bump_upthat accepts a list of grades and returns the list with 20% added to each grade
- 
Create a function coldthat accepts a list of temperatures in Celsius and returns only those below 20 degrees
- 
Create a function gmail_onlythat accepts a list of email addresses and returns a list of only those addresses that end with "@gmail.com"
- 
Create a function long_namesthat, given a list of names, returns a list of all names longer than 8 characters
- 
Create a function can_afford, that Prof. Cheapskate can use to determine which items to buy at the University Bookstore. He will only buy individual items that are less than 100 pesos. But because he's a Professor, he gets a 5% discount for all items at the bookstore.can_affordshould take a list of prices (before discount), and produce a list of prices that he can afford with the discount applied.