Python Quiz for Data Science Try the following quiz, it has 10 fairly simple questions on minute Python concepts.Comment your score below and do mention if you would like to have more quizzes.Python for Data ...
Continue readingPython MCQ | Daily Quiz Day 2
Python Quiz for Interview Try the following quiz, it has 5 fairly simple questions on minute Python concepts.Comment your score below and do mention if you would like to have more quizzes.Python for Data Science
Continue readingPython for Data Science | Quiz 1
Python for Data ScienceTry the following quiz, it has 5 fairly simple questions on minute Python concepts.Comment your score below and do mention if you would like to have more quizzes.Python for Data ScienceWe will ...
Continue readingVisualization in Python Part 2
We have already plotted some basic graphs. Now it's time to plot some more graphs:- Line Histogram Now let’s create a line histogram with some random dataimport matplotlib.pyplot as plt import numpy as np ...
Continue readingVisualizations in Python
Data visualization is the discipline of trying to understand data by placing it in a visual context so that patterns, trends and correlations that might not ...
Continue readingReading and Writing files in Python
You always have to read and write files when working for a company or Hackathon. So, it's necessary to know how to read different types of files.Let's start the boring but important partThe most important command to open ...
Continue readingTricky Interview Questions (Python)
The reason why I put interview questions as the title of a lot of posts is because:-1. It makes you click on the post2. It makes you feel ...
Continue readingFunctions in Python
Welcome to the world of Functions. This is undoubtedly the most important topic of your Data Science career :PFunction will make your life easy and your peer's life easier !!Toh shuru karte hain, bina kisi bakchodi ke(Let's start ...
Continue readingLoop in Python
Loop and functions are two most important topics in the basics of Python. You need to have a really good hand on loop and functions.Loop is basically ...
Continue readingPython – Conditional Statements
One of the most important thing which you need to learn in Python is the use of conditional statement. These are small code snippets which will help you solve multiple problems in a project or any hackathon.Conditional statements ...
Continue reading