Python Fundamentals LiveLessons, Parts I, II, III, IV, and V دانلود دوره آموزش پایتون

زبان برنامه نویسی پایتون (Python) یک زبان برنامه نویسی محبوب و پویا برای توسعه برنامه های تحت وب بشمار می رود. پایتون به صورت سطح بالا، شیءگرا و مفسر و با هدف خوانایی بالای برنامه‌های نوشته شده و کوتاهی و بازدهی نسبی بالای برنامه‌های نوشته شده، طراحی شده است. پایتون مدل‌های مختلف برنامه نویسی (از جمله شیء گرا و برنامه نویسی دستوری و تابع محور) را پشتیبانی می‌کند و برای مشخص کردن نوع متغییرها از یک سامانه پویا استفاده می‌کند. زبان پایتون به دلیل سادگی، قدرت و مودال‌های کامل آن مورد توجه خیلی از سازمان‌ها مانند گوگل، یاهو و IBM قرار گرفته است. در دوره آموزشی Python Fundamentals LiveLessons, Parts I, II, III, IV, and V به صورت جامع با اصول و مبانی پایتون اشنا خواهید شد.

لینک دانلود دوره جامع آموزش پایتون Python Fundamentals LiveLessons, Parts I, II, III, IV, and V

 

حجم : 2.85 گيگابايت

دانلود – بخش اول
دانلود – بخش دوم
دانلود – بخش سوم

رمز فايل: technet24.ir

  • Copyright 2020
  • Price: $1,245.00
  • Edition: 1st
  • By: Paul Deitel
  • Publish by: Pearson
  • ISBN-10: 0-13-591740-9
  • ISBN-13: 978-0-13-591740-4
  • 51+ hours of video instruction
Overview

The professional programmers Deitel® video guide to Python development with the powerful IPython and Jupyter Notebooks platforms.

Description

Python Fundamentals LiveLessons with Paul Deitel is a code-oriented presentation of Pythonone of the worlds most popular and fastest growing languages. In the context of scores of real-world code examples ranging from individual snippets to complete scripts, Paul will demonstrate coding with the interactive IPython interpreter and Jupyter Notebooks. Youll quickly become familiar with the Python language, its popular programming idioms, key Python Standard Library modules and several popular open-source libraries. In the Intro to Data Science videos, Paul lays the groundwork for later lessons in which hell introduce some of todays most compelling, leading-edge computing technologies, including natural language processing, data mining Twitter® for sentiment analysis, cognitive computing with IBM® Watson, supervised machine learning with classification and regression, unsupervised machine learning with clustering, computer vision through deep learning and convolutional neural networks, sentiment analysis through deep learning with recurrent neural networks, big data with Hadoop®, Spark streaming, NoSQL databases and the Internet of Things.

Download the code examples for this LiveLesson from https://github.com/pdeitel/PythonFundamentalsLiveLessons. This repository will be updated with the additional lessons examples as the lessons are completed.

About the Instructor

Paul J. Deitel, CEO and Chief Technical Officer of Deitel & Associates, Inc., is a graduate of MIT, where he studied Information Technology. He holds the Sun (now Oracle) Certified Java Programmer and Certified Java Developer certifications, and is an Oracle Java Champion. Through Deitel & Associates, Inc., he has delivered Java, C#, Visual Basic, C++, C and Internet programming courses to industry clients, including Cisco, IBM, Sun Micro systems, Dell, Siemens, Lucent Technologies, Fidelity, NASA at the Kennedy Space Center, the National Severe Storm Laboratory, White Sands Missile Range, Rogue Wave Software, Boeing, SunGard Higher Education, Stratus, Cambridge Technology Partners, One Wave, Hyperion Software, Adra Systems, Entergy, CableData Systems, Nortel Networks, Puma, iRobot, Invensys and many more. He and his co-author, Dr. Harvey M. Deitel, are the worlds best-selling programming-language textbook/professional book authors.

Skill Level

Beginner-to-Intermediate

What you will learn in Part I:
  • Before You Begin — Configure your system for Python, obtain the code examples, Python package managers, Pauls contact info
  • Lesson 1 — Test-Drives: Using IPython and Jupyter Notebooks — Work with snippets and scripts in the context of IPython and Jupyter Notebooks
  • Lesson 2 — Intro to Python Programming — Variables, types, operators, strings, I/O, decisions, objects and dynamic typing
  • Lesson 3 — Control Statementsif, if . . . else, if . . . elif . . . else, for, while, break, continue, augmented assignments, boolean operators, intro to lists
  • Lesson 4 — Functions — Custom function definitions, importing libraries, simulation with random-number generation, scope, default parameter values, keyword arguments, arbitrary argument lists, methods, intro to tuples, intro to functional-style programming
What you will learn in Part II:
  • Lesson 5 — Sequences: Lists and Tuples — Create, initialize and access the elements of lists and tuples; sort and search lists, and search tuples; pass lists and tuples to functions and methods; list methods; functional-style programming (lambdas, filter, map, reduce, list comprehensions, generator expressions, 2D lists); static visualization with the Seaborn and Matplotlib visualization libraries.
  • Lesson 6 — Dictionaries and Sets — Dictionaries of key-value pairs; sets of unique values; iterating through keys, values and key-value pairs; adding, removing and updating key-value pairs; dictionary and set comparison operators; set operators and methods; operators in and not in for membership testing; mutable set operations; dictionary and set comprehensions; dynamic visualization with the Seaborn and Matplotlib visualization libraries.
  • Lesson 7 — Array-Oriented Programming with NumPy — numpy modules high-performance ndarrays; how ndarrays differ from lists; comparing list vs. ndarray performance with the IPython %timeit magic; one-dimensional and multi-dimensional ndarrays; common ndarray manipulations; introduction to the pandas data manipulation library; one-dimensional Series and two-dimensional DataFrames; custom Series and DataFrame indices; basic descriptive statistics for data in a Series and a DataFrame; customizing pandas output formatting.
What you will learn in Part III:
  • Lesson 8 — Strings: A Deeper Look — String methods; string formatting; concatenating and repeating strings; stripping whitespace; string comparisons; search strings for substrings and replacing substrings; tokenizing strings; regular expressions for pattern matching, replacing substrings and validating data; manipulating data in pandas.
  • Lesson 9 — Files and Exceptions — Text-file processing; serializing objects into the JSON with the json module; with statement for avoiding resource leaks; exception handling; try . . . except statement; else clause; executing code when no exceptions occur in a try suite; finally clause; raise exceptions; more details on tracebacks; stack unwinding; CSV file processing via the csv module; loading and manipulating CSV files in pandas.
  • Lesson 10 — Object-Oriented Programming — Custom classes; controlling access to attributes; properties for data access; simulating private attributes; Python special methods for customizing string representations; inheritance, duck typing and polymorphism; class object; Python special methods for overloading operators; named tuples; Python 3.7 data classes; unit testing with doctest; namespaces and how they affect scope; Introduction to time series and simple linear regression.
What you will learn in Part IV:
  • Lesson 11 — Natural Language Processing (NLP) — Install and use the TextBlob, NLTK, Textatistic and spaCy NLP libraries;, tokenize text into words and sentences; parts-of-speech tagging (noun, verb, etc.); sentiment analysis (positive, negative or neutral); detect the language of text; translate between languages; get word roots via stemming and lemmatization; spell checking and correction; word definitions, synonyms and antonyms; remove stop words from text; create word-cloud visualizations; determine text readability.
  • Lesson 12 — Data Mining Twitter® — Access tweets and other information on Twitter with Tweepy — a popular Python Twitter API client; search past tweets with the Twitter Search API; sample the live tweet stream with the Twitter Streaming API; work with tweet object meta data; use NLP techniques to clean and preprocess tweets for analysis; perform sentiment analysis on tweets; spot trending topics with Twitters Trends API; map tweets using folium and OpenStreetMap.
  • Lesson 13 — IBM Watson® and Cognitive Computing — Intro to Watson and its free Lite tier services; demos of several Watson services; registering for an IBM Cloud account; set up and get credentials for Watson services; install the Watson Developer Cloud Python SDK; build a Travelers companion language translator app that mashes up the Watson Speech to Text, Language Translator and Text to Speech services.
What you will learn in Part Vs case studies:
  • Lesson 14 — Machine Learning: Classification, Regression and Clustering — Use scikit-learn with popular datasets to perform machine learning studies; Use Seaborn and Matplotlib to visualize and explore data; Perform supervised machine learning with k-nearest neighbors classification and linear regression; Perform multi-classification with Digits dataset; Divide a dataset into training, testing and validation sets; Tune hyperparameters with k-fold cross-validation; Measure model performance; Display a confusion matrix showing classification prediction hits and misses; Perform multiple linear regression with the California Housing dataset; Perform dimensionality reduction with PCA and t-SNE on the Iris and Digits datasets to prepare them for two-dimensional visualizations. Perform unsupervised machine learning with k-means clustering and the Iris dataset.
  • Lesson 15 — Deep Learning — What a neural network is and how it enables deep learning; Create Keras neural networks; Keras layers, activation functions, loss functions and optimizers; Use a Keras convolutional neural network (CNN) trained on the MNIST dataset to build a computer vision application that recognizes handwritten digits; Use a Keras recurrent neural network (RNN) trained on the IMDb dataset to create a sentiment analysis application that performs binary classification of positive and negative movie reviews.
  • Lesson 16 — Big Data: Hadoop, Spark, 17 — Manipulate a SQLite relational database using SQL; Understand the four major types of NoSQL databases; Store tweets in a MongoDB NoSQL JSON document database and visualize them on a Folium map; Apache Hadoop and how its used in big-data batch-processing applications; Build a Hadoop MapReduce application on Microsofts Azure HDInsight cloud service; Apache Spark and how its used in high-performance, real-time big-data applications; Process mini-batches of data with Spark streaming; Internet of Things (IoT) and the publish/subscribe model; Publish messages from a simulated Internet-connected device and visualize messages in a dashboard; Subscribe to PubNubs sample live streams and visualize the data.
100%
Awesome
  • Design
3 دیدگاه
  1. afshin says

    با سلام خدمت شما
    بسیار سپاسگزارم، خیلی دنبال این دوره می گشتم
    مثل همیشه سایتتون عالی هست
    دمتون گرم
    خدا قوت
    همیشه موفق و پیروز باشید

  2. پویا says

    سلام ، بنظرم حجم رو اشتباه وارد کردید و باید بیشتر از این حرفا باشه

    1. technet24 says

      فایل ها فشرده هست

دیدگاه

آدرس ایمیل شما منتشر نخواهد شد.