Utexas This week we teamed up for the project that’s supposed to follow us for the rest of the semester. Our team name will be ninjaPenguins. A brutal and note worthy name. We ended up meeting Sunday for a little study session for this upcoming exam and I should be over prepared for this exam. We discussed so many different aspects of Python. Everything from generator functions to iterable classes and even inheritance and lambda functions.

We even discovered how to embed lambda functions within a list comprehension [(lambda x: x**2)(x) for x in [1,2,3] ]. To help the clas study I put together a list of questions that I feel are very likely to be on the test. Just my opinion but it extremely helped me study. Especially trying to write the map function from scratch was an amazing learning experience.

def _map(f,list1,*list2):
    if len(list2) > 0:
        zipper = zip(list1,*list2)
        return (f(*a) for a in zipper)
    else:
        return (f(a) for a in list1)

##Tip of the Week: Group study sessions are great! Especially when you find a great group of people to study with!

This week I definitely recommend

the Art of Charm Podcast list to Brand and Stand out