Oreilly - Introduction to Python: Learn How to Program Today with Python - 9780135707333
Oreilly - Introduction to Python: Learn How to Program Today with Python
by Arianne Dee | Released May 2019 | ISBN: 0135707331


7+ Hours of Video InstructionOverviewPython is a great, beginner-friendly programming language because it was originally designed with learners in mind. It is also used by professional developers in a wide range of applications, like web programming, data science, artificial intelligence, and DevOps. It is estimated that there are about 3 million Python programmers in the world, and by some accounts, it is the fastest growing, most widely used language, especially in high-GDP countries. Out of dozens of programming languages, Python is the third most loved language and is the number one language that current and aspiring developers want to learn.As an instructor who regularly teaches people who are completely new to programming, Arianne has found that students are often looking for more context than is provided in most introductory courses. Specifically, students want to know how various languages fit into the programming landscape, as well as what next steps they should take after the course. Introduction to Python LiveLessons attempts to fill these gaps by providing “extra context” lessons, in addition to teaching fundamental programming concepts, answering questions like, “Why are there so many languages?”, “How is Python different from other languages?”, and “What concepts should I learn next?” Afterwards, the lessons end with a crash-course on data analysis and web development, the two primary uses of Python.Table of Contents Introduction Lesson 1: Introduction to Programming and Python Lesson 2: Python and Programming Basics Lesson 3: Control Flow with Conditionals Lesson 4: Lists and Loops Lesson 5: Advanced Language Topics Lesson 6: Introduction to Data Analysis in Python Lesson 7: Introduction to Web Development in Python Summary DescriptionThis 7+ hour LiveLesson video helps absolute beginners get started in Python, which is one of the most popular and in-demand languages in use today. Python was created with beginners in mind, but don't let its simple nature fool you. It is used by professional developers in a wide range of applications, such as web programming, data analysis, machine learning, and DevOps. While most introductory courses focus on the basics of the language, this course goes one step further to explain how Python is used in practice in the fields of data analysis and web development.Students learn fundamental programming concepts‚Äìfor example, variables and functions. They are given hands-on, modular problems to solve so they can progress as they go. Finally, students tie it all together and experiment with some real programming in the form of text-based games.The overall goal of this course is to help absolute beginners learn from scratch, navigate the esoteric world of software development, and then kick-start their programming journey with introductions to two of the more common uses of Python: data analysis and web development.The companion files for this LiveLesson can be accessed from https://github.com/ariannedee/intro-to-python-livelessons.About the InstructorArianne Dee is a full-stack software developer, technology educator, and all-around maker, located in Vancouver, Canada. She has four years of professional Python experience and loves Python for its intuitive syntax and broad applications. Over the years she has been an instructor for introductory programming courses through Canada Learning Code, presented at Python conferences, and coauthored the open-source project django-graph-api. Arianne is the instructor of Rethinking REST LiveLessons (Addison-Wesley, 2019) and has worked on various Live Trainings on these topics.Skill LevelBeginnerWhat You Will LearnStudents will learn how toThink like a programmerSolve mini practice problems in PythonUse common libraries like “math” and “random”Build three small games to practice their learningUse PyCharm, a code editor for PythonClean up code so it is easy to understandOnce the basics are down, Arianne will provideA brief introduction to data analysisA brief introduction to web developmentAn overview of classes, external libraries, and virtual environments in PythonWho Should Take This CoursePrimary: People who are curious about programming and have little to no experience in itSecondary: Beginner/novice programmers who already know one language and want to learn PythonCourse RequirementsGeneral computer skills are an asset‚Äìfor example, moving, copying, renaming, and deleting files on the computer they will be usingExperience using text-editors and/or spreadsheet applicationsComfort using web browsers and search enginesAbout Pearson Video TrainingPearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Prentice Hall, Sams, and Que Topics include: IT Certification, Network Security, Cisco Technology, Programming, Web Development, Mobile Development, and more. Learn more about Pearson Video training at http://www.informit.com/video. Show and hide more
  1. Introduction
    • Introduction to Python: Introduction 00:03:13
  2. Lesson 1: Introduction to Programming and Python
    • Learning objectives 00:00:42
    • 1.1 Install Python and PyCharm 00:11:07
    • 1.2 Run your first Python code 00:14:33
    • 1.3 Get more context: understand what programming is 00:10:39
  3. Lesson 2: Python and Programming Basics
    • Learning objectives 00:00:58
    • 2.1 Learn about types 00:05:27
    • 2.2 Work with variables 00:12:52
    • 2.3 Debug errors 00:12:54
    • 2.4 Use libraries 00:09:03
    • 2.5 Get more context: learn about Python 00:08:06
    • 2.6 Write your own functions 00:18:21
    • 2.7 Manipulate strings 00:13:39
    • 2.8 Write a Mad Libs program 00:07:45
  4. Lesson 3: Control Flow with Conditionals
    • Learning objectives 00:01:01
    • 3.1 Get more context: solve problems like a programmer 00:09:56
    • 3.2 Identify true and false statements 00:08:57
    • 3.3 Use conditional "if" statements 00:13:48
    • 3.4 Write a number-guessing game 00:11:08
  5. Lesson 4: Lists and Loops
    • Learning objectives 00:01:12
    • 4.1 Use a "while" loop 00:09:43
    • 4.2 Improve the number guessing game with "while" loops 00:08:38
    • 4.3 Create and manipulate lists 00:13:41
    • 4.4 Loop over lists with "for" loops 00:15:42
    • 4.5 Write a word-guessing game 00:21:04
    • 4.6 Get more context: clean up and test your code 00:17:24
  6. Lesson 5: Advanced Language Topics
    • Learning objectives 00:01:49
    • 5.1 Get more context: discuss how to keep learning 00:08:48
    • 5.2 Look at more data structures 00:14:38
    • 5.3 Create list comprehensions 00:08:16
    • 5.4 Read files 00:06:22
    • 5.5 Write more complex functions 00:11:15
    • 5.6 Program with classes 00:10:37
    • 5.7 Import external libraries 00:08:29
    • 5.8 Manage virtual environments 00:12:45
  7. Lesson 6: Introduction to Data Analysis in Python
    • Learning objectives 00:00:56
    • 6.1 Look at the ecosystem 00:04:53
    • 6.2 Set up Anaconda in Jupyter 00:05:00
    • 6.3 Import a dataset 00:06:15
    • 6.4 Plot the data 00:16:55
    • 6.5 Clean some data 00:16:04
  8. Lesson 7: Introduction to Web Development in Python
    • Learning objectives 00:01:12
    • 7.1 Look at the anatomy of a web app 00:12:03
    • 7.2 Start a web app with Flask 00:13:54
    • 7.3 Learn the basics of HTML and CSS 00:16:33
    • 7.4 Fill in website functionality 00:13:30
    • 7.5 Understand some JavaScript and JQuery 00:14:53
    • 7.6 Get more context: databases and deployment 00:17:12
  9. Summary
    • Introduction to Python: Summary 00:00:24
  10. Show and hide more

    Oreilly - Introduction to Python: Learn How to Program Today with Python

    9780135707333.introduction.to.python.OR.part1.rar

    9780135707333.introduction.to.python.OR.part2.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss