A Programmer’s Guide to Data Mining

I think I heard an interview with data scientist Greg Kamradt about Galvanize. Bookmarking for later.

I’ve been busy at work and in my spare time reading and finding podcasts about data science. I picked up Automate the Boring Stuff with Pythonautomate_cover_medium last week and like its style.

I’m excited to get a little further in the projects. Before purchasing the book I made a simple paycheck calculator in Python and am looking forward to more.

 

Before the calculator my husband helped me get familiar with Python, haha-

def sayhitosomeone(name):
print(‘oh hi ‘ + name + ‘ do you want a beer?’)
sayhitosomeone(‘ryan’)
sayhitosomeone(‘pendragon’)

 

Leave a comment