Text
Python is the Perfect Tool for any Problem
Python is the Perfect Tool for any Problem
Python is the Perfect Tool for any Problem Reflecting on my first Python program
Reflection is always a helpful (and sometimes entertaining ) exercise. For nostalgia’s sake — if one can be nostalgic for something 2 years old— I wanted to share my first Python program. I initially picked up Python as an aerospace engineering student to avoid spreadsheets and little did I know how good a decision…
View On WordPress
2 notes
·
View notes
Text
5 Resources to Inspire Your Next Data Science Project
5 Resources to Inspire Your Next Data Science Project
Getting Started
5 Resources to Inspire Your Next Data Science Project
We are exposed to seemingly endless streams of data science career advice, but there is one topic that doesn’t get quite enough love: side projects. Side projects are awesome for plenty of reasons, but I like how Julie Zhuo puts it in the simple Venn diagram below:
Side projects serve as a way to apply data…
View On WordPress
0 notes
Text
Top 5 Python Libraries for Data Science in 2018
Top 5 Python Libraries for Data Science in 2018
“This Article is taken from Medium.com”
Igor Bobriakov”
Top 15 Python Libraries for Data Science in 2018
As Python has gained a lot of traction in the recent years in Data Science industry. I wanted to outline some of its most useful libraries for data scientists and engineers, based on recent experience.
1. NumPy
When starting to deal with the scientific task in Python, one inevitably comes…
View On WordPress
0 notes
Link
In the previous post, I shared some very great courses on Machine learning. Some of them were paid and some weren't. Today, I will be sharing the best Top 5 Data Science Books available on the internet to learn Data Science. I will point out the book
0 notes
Text
Top 5 Data Science Books | 2018
Top 5 Data Science Books | 2018
In the previous post, I shared some very great courses on Machine learning. Some of them were paid and some weren’t. Today, I will be sharing the best Top 5 Data Science Books available on the internet to learn Data Science.
I will point out the books that are aimed at beginners level to Master level. They are the books you should read it to get started with Data Science if you want to become a…
View On WordPress
0 notes
Link
Top 10 Machine Learning Courses for 2018: Here is the list of Top 10 Machine Learning Courses for 2018. Introduction to Machine Learning Machine Learning Python for Data Science and Machine Learning Bootcamp Machine Learning A-Z™: Hands-On Python & R In Data Science Data Science, Deep Learning, & Machine Learning
0 notes
Text
Top 10 Machine Learning Courses for 2018
Top 10 Machine Learning Courses for 2018
Machine Learning:
“Machine Learning is a study that gives computers the ability to learn without being explicitly programmed.” Arthur Samuel
Machine learning is the future. As we can see most huge organizations are using machine learning algorithms to solve their problems. Facebook, Google, Amazon, and other big organizations are some of the examples that are using machine learning algorithms to…
View On WordPress
0 notes
Link
Python Functions Tutorial: Functions are defined as blocks of code to do a specific task. When you want to perform a specific task over and over in your program. You don't have to write code again and again. You defined a function and then you call the name of the function.
0 notes
Text
Python Functions Tutorial | Learn Python
Python Functions Tutorial | Learn Python
Python Functions Tutorial:
Functions are defined as blocks of code to do a specific task.
When you want to perform a specific task over and over in your program. You don’t have to write code again and again. You defined a function and then you call the name of the function. Functions make your program easier to write, read, test, and fix.
In this article, you are going to learn, how to write…
View On WordPress
0 notes
Link
Python Operators: If statements always have a condition in its round braces. In Python, there are many conditional tests. I going to give a list of conditional statements as we will cover all conditional tests in the upcoming posts.you will learn to use if statement to examine the different condition.
2 notes
·
View notes
Link
Python Dictionaries Tutorial: In this post, you are going to learn about Python Dictionaries. A dictionary in Python is a collection of unordered values accessed by key rather than by index. The keys have to be hashable: integers, floating point numbers, strings, tuples, and frozensets are hashable
0 notes
Link
PYTHON DICTIONARY TUTORIAL: This article is the extension of the previous post on Python Dictionary. In a previous post, we learn how to create Dictionary, accessing the elements of the dictionary.PYTHON DICTIONARY TUTORIAL
#tutorial#python#python3#learnning#learnpython#coding#pythondictionary#weirdocoder#pythondictionarytutorial
0 notes
Link
In this article, you are going to learn to take User Input in Python 3. Almost every program are built to solve user's problem. Let's say we want to create a simple arithmetic calculator. That will do simple mathematical operations like division, multiplication, addition How to take User Input in Python 3?
#tutorial#python#python3#learnpython#learning#howtotakeuserinputpython#weirdocoder#cprograms#commandline
0 notes
Link
Python Dictionaries Tutorial: In this post, you are going to learn about Python Dictionaries. A dictionary in Python is a collection of unordered values accessed by key rather than by index. The keys have to be hashable: integers, floating point numbers, strings, tuples, and frozensets are hashable
0 notes
Text
User Input() | int() Method Learn Python 3
User Input() | int() Method Learn Python 3
In this article, you are going to learn to take User Input in Python 3.
Almost every program are built to solve user’s problem. To do so, usually, we need some input to get some information from the user.
Let’s say we want to create a simple arithmetic calculator. That will do simple mathematical operations like division, multiplication, addition, and subtraction. Now, the user will use this…
View On WordPress
0 notes
Text
PYTHON DICTIONARY TUTORIAL PART 2 – PYTHON 3
PYTHON DICTIONARY TUTORIAL PART 2 – PYTHON 3
PYTHON DICTIONARY TUTORIAL:
This article is the extension of the previous post on Python Dictionary. In a previous post, we learn how to create Dictionary, accessing the elements of the dictionary. Furthermore, we learned how to add new key-value pairs.
In this post, we are going to learn how to start with an empty dictionary moving on with how to modify a dictionary. In the end, we will talk…
View On WordPress
0 notes
Text
Python List - Learn Python
Python List – Learn Python
In this tutorial, we are going to learn about python list. Lists are the most powerful feature of Python language as it allows you to store information in one place. A list has a great feature of that you can either store one line of information or hundreds of thousands of lines of information.
Python List:
A list is just a collection of information. It can store same or different kind of…
View On WordPress
0 notes