#python
Read more stories on Hashnode
Articles with this tag
Automate the boring stuff · There are a few things that we always do when we look at a dataset. We want to know how many records do we have what are the...
Beginning Python's Pandas · Pandas is an excellent choice for beginning your data science journey. In a previous post we have seen how to open and read...
count, repeat and cycle · In Python one can do the same thing in a number of ways. There are times when you don't want to use the good old for loop. Use...
Baby steps to Data Science · In this post we will read data from a CSV file in two ways: Python's CSV reader Pandas CSV reader Reading a CSV file is...
Dunder magic · Everything in Python is an object, underscore included. The dir() function returns information about any object in Python. Calling dir on...
Capture dice events · I came across the dice game called Pig and I have attempted an implementation here. Here's the link to the rules of the game ...