230 likes | 485 Views
In this tutorial, we will be covering all the fundamentals of Python required for implementing deep learning models. <br><br>Below are the topics we will cover in this tutorial: <br><br>1. What is Python? <br>2. Variables, Data Types, Operators <br>3. Conditional Statements, Loops, Functions <br>4. Pandas, Numpy and Matplotlib
E N D
Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Use-Case Let’s see what we will implement in this session Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Use-Case You have been hired by WHO, and your task is to analyze the pattern in life-expectancy for every country of the world from (1960-2012). Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Why Are We Doing This Let’s understand the importance of this use-case Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Use-Case Healthy Diet Social Conditions Vaccination Regular Exercise Economic Conditions Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is Python? Let’s understand what is Python? Copyright © 2017, edureka and/or its affiliates. All rights reserved.
What Is Python? Python is an interpreted, object-oriented, high-level programming language with dynamic semantics Object Oriented Procedure Oriented High Level Language Easy to Learn Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Code-Basics Now is the time to understand Pyhon code-basics Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Variables Variables are nothing but reserved memory locations to store values. This means that when you create a variable you reserve some space in memory. A=16 A = 16 B = 20 C = ‘edureka’ Memory B=20 C=‘edureka’ Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Data-Types List Strings Dictionary Tuple Set Numeric Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Operators Comparison Operators Membership Operators Identity Operators Bitwise Operators Logical Operators Operators Assignment Operators Arithmetic Operators Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Conditional Statements Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Loops Start Conditional Code If condition is true Condition If condition is false End Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Functions Functions are a convenient way to divide your code into useful blocks, allowing us to order our code, make it more readable, reuse it and save some time. Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Numpy, Pandas, Matplotlib Let’s look at some useful Python libraries Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Python Numpy Numpy is the core library for scientific computing in Python. It provides a high-performance multidimensional array object, and tools for working with these arrays. • • Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Matplotlib Matplotlib is a Python package used for 2D graphics Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Pandas Pandas is a software library written for the Python programming language for data manipulation and analysis. Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Use-Case Implementation Let’s see how to implement the use-case Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Implementation Of The Use-Case Copyright © 2017, edureka and/or its affiliates. All rights reserved.
Session In A Minute Python Use-Case What is Python? Python Code-Basics Implementation Of The Use-Case Copyright © 2017, edureka and/or its affiliates. All rights reserved.