Companies Home Search Profile

Core Python 3: Getting Started

Focused View

Austin Bingham

4:05:49

93 View
  • 1. Course Overview.mp4
    01:39
  • 1. Version Check.mp4
    00:20
  • 2. Overview.mp4
    01:13
  • 3. Installing Python.mp4
    03:16
  • 4. Interactive Python.mp4
    02:59
  • 5. Significant Whitespace.mp4
    03:32
  • 6. Python Culture.mp4
    01:21
  • 7. The Python Standard Library.mp4
    04:30
  • 8. Summary.mp4
    01:46
  • 1. Overview.mp4
    04:41
  • 2. Relational Operators.mp4
    01:15
  • 3. Control Flow.mp4
    01:43
  • 4. While-loops.mp4
    03:39
  • 5. Summary.mp4
    01:18
  • 1. Overview.mp4
    01:00
  • 2. String.mp4
    01:35
  • 3. String Literals.mp4
    04:43
  • 4. Bytes.mp4
    01:44
  • 5. List.mp4
    01:39
  • 6. Dict.mp4
    01:10
  • 7. For-loop.mp4
    00:54
  • 8. Putting it all Together.mp4
    03:21
  • 9. Summary.mp4
    02:45
  • 01. Overview.mp4
    01:09
  • 02. Modules.mp4
    01:52
  • 03. Functions.mp4
    03:52
  • 04. __name__.mp4
    02:52
  • 05. The Python Execution Model.mp4
    01:38
  • 06. Command Line Arguments.mp4
    03:10
  • 07. Moment of Zen.mp4
    00:31
  • 08. Docstrings.mp4
    01:21
  • 09. Comments.mp4
    00:36
  • 10. Shebang.mp4
    01:44
  • 11. Summary.mp4
    02:34
  • 1. Overview.mp4
    05:53
  • 2. Passing Arguments and Returning Values.mp4
    02:54
  • 3. Function Arguments.mp4
    04:23
  • 4. Python's Type System.mp4
    01:01
  • 5. Scopes.mp4
    03:37
  • 6. Moment of Zen.mp4
    00:25
  • 7. Everything is an Object.mp4
    01:15
  • 8. Summary.mp4
    02:44
  • 1. Overview.mp4
    00:41
  • 2. Tuples.mp4
    03:10
  • 3. Strings.mp4
    06:53
  • 4. Ranges.mp4
    02:23
  • 5. Lists.mp4
    08:26
  • 6. Dictionaries.mp4
    05:11
  • 7. Sets.mp4
    04:25
  • 8. Protocols.mp4
    01:30
  • 9. Summary.mp4
    02:45
  • 01. Overview.mp4
    02:20
  • 02. Exceptions and Control Flow.mp4
    01:14
  • 03. Handling Exceptions.mp4
    02:03
  • 04. Exceptions and Programmer Errors.mp4
    02:10
  • 05. Re-raising Exceptions.mp4
    01:16
  • 06. Exceptions Are Part of the API.mp4
    03:18
  • 07. Exceptions and Protocols.mp4
    01:36
  • 08. Avoid Explicit Type Checks.mp4
    00:59
  • 09. It's Easier to Ask Forgiveness Than Permission.mp4
    02:51
  • 10. Cleanup Actions.mp4
    01:42
  • 11. Platform-Specific Code.mp4
    02:23
  • 12. Summary.mp4
    02:25
  • 01. Overview.mp4
    01:31
  • 02. List and Set Comprehensions.mp4
    02:26
  • 03. DIctionary Comprehensions.mp4
    01:44
  • 04. Filtering Comprehensions.mp4
    01:02
  • 05. Moment of Zen.mp4
    00:40
  • 06. Iteration Protocols.mp4
    02:40
  • 07. Generator Functions.mp4
    03:10
  • 08. Maintaining State in Generators.mp4
    02:17
  • 09. Laziness and the Infinite.mp4
    01:28
  • 10. Generator Expressions.mp4
    02:17
  • 11. Iteration Tools.mp4
    03:47
  • 12. Summary.mp4
    01:52
  • 01. Overview.mp4
    01:20
  • 02. Classes.mp4
    01:00
  • 03. Defining Classes.mp4
    01:42
  • 04. Instance Methods.mp4
    01:04
  • 05. Instance Initializers.mp4
    05:07
  • 06. A Second Class.mp4
    02:04
  • 07. Collaborating Classes.mp4
    01:12
  • 08. Moment of Zen.mp4
    00:27
  • 09. Booking Seats.mp4
    05:53
  • 10. Methods for Implementation Details.mp4
    02:58
  • 11. Object-Oriented Design with Function Objects.mp4
    03:00
  • 12. Polymorphism and Duck Typing.mp4
    03:32
  • 13. Inheritance and Implementation Sharing.mp4
    03:36
  • 14. Summary.mp4
    03:44
  • 01. Overview.mp4
    01:16
  • 02. Opening Files.mp4
    01:50
  • 03. Writing Text.mp4
    02:34
  • 04. Reading Text.mp4
    02:33
  • 05. Appending Text.mp4
    00:52
  • 06. Iterating over Files.mp4
    01:12
  • 07. Closing Files with Finally.mp4
    02:04
  • 08. With-blocks.mp4
    01:12
  • 09. Moment of Zen.mp4
    00:29
  • 10. Binary Files.mp4
    05:06
  • 11. Bitwise Operators.mp4
    00:49
  • 12. Pixel Data.mp4
    01:15
  • 13. Reading Binary Data.mp4
    01:20
  • 14. File-like Objects.mp4
    02:36
  • 15. Context Managers.mp4
    01:22
  • 16. Summary.mp4
    02:31
  • Description


    In this course we'll introduce you to the essentials of the Python language, development culture, and important parts of the Python standard library. This course will help you develop the foundation you need to work on any Python project.

    What You'll Learn?


      Python is a big language, and it's important to have a thorough grounding in its key concepts in order to be productive and create high-quality Python programs. In our experience, starting off in the right direction and avoiding early misconceptions is crucial to success with Python, and that's the kind of start we aim to provide. In this course, Core Python 3: Getting Started, we are going to introduce you to the essentials of the Python language as well as important parts of the Python standard library. Some of the major topics that we will cover include: Python's fundamental data types, using functions and modules to organize your code, Python's underlying object model, defining your own types using classes, and working with iteration and iterable objects. By the end this course, you'll have the skills and knowledge to work on almost any Python project, and you'll be in a great position to continue learning more advanced aspects of the language.

    More details


    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Austin Bingham
    Austin Bingham
    Instructor's Courses
    Austin is a founding director of Sixty North, a software consulting, training, and application development company. A native of Texas, in 2008 Austin moved to Stavanger, Norway where he helped develop industry-leading oil reservoir modeling software in C++ and Python. Prior to that he worked at National Instruments developing LabVIEW, at Applied Research Labs (Univ. of Texas at Austin) developing sonar systems for the U.S. Navy, and at a number of telecommunications companies. He is an experienced presenter and teacher, having spoken at a number of conferences, software groups, and internal corporate venues. Austin is also an active member of the open source community, contributing regularly to various Python and Emacs projects, and he's the founder of Stavanger Software Developers, one of the largest and most active social software groups in Stavanger. Austin holds a Master of Science in Computer Engineering from the University of Texas at Austin.
    Pluralsight, LLC is an American privately held online education company that offers a variety of video training courses for software developers, IT administrators, and creative professionals through its website. Founded in 2004 by Aaron Skonnard, Keith Brown, Fritz Onion, and Bill Williams, the company has its headquarters in Farmington, Utah. As of July 2018, it uses more than 1,400 subject-matter experts as authors, and offers more than 7,000 courses in its catalog. Since first moving its courses online in 2007, the company has expanded, developing a full enterprise platform, and adding skills assessment modules.
    • language english
    • Training sessions 105
    • duration 4:05:49
    • level preliminary
    • English subtitles has
    • Release Date 2023/01/24