• byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Using List Comprehensions Effectively

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 8 Lessons (13m) | Size: 29.7 MB This short course breaks down Python list comprehensions for you step by step. See how Python's comprehensions can be transformed from and to equivalent

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Splitting, Concatenating, and Joining Strings in Python

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 4 Lessons (18m) | Size: 45.9 MB In this course you'll learn some of the most fundamental string operations: splitting, concatenating, and joining. Not only will you learn how to use

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Reading and Writing Files in Python

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 9 Lessons (30m) | Size: 70.1 MB In this course, you'll learn about reading and writing files in Python. You'll cover everything from what a file is made up of to which libraries can

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Python args and kwargs Demystified

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 6 Lessons (12m) | Size: 27.7 MB Sometimes, when you look at a function definition in Python, you might see that it takes two strange arguments: *args and **kwargs. If you've ever

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Python String Formatting Tips & Best Practices

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 6 Lessons (16m) | Size: 27.1 MB Learn the four main approaches to string formatting in Python, as well as their strengths and weaknesses. You'll also get a simple rule of thumb for how

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Python Context Managers and the with Statement

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 6 Lessons (12m) | Size: 25.2 MB Python's with statement is powered by a language feature called context managers. It helps you simplify some common resource management patterns by

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Python 3's f-Strings An Improved String Formatting Syntax

    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 8 Lessons (22m) | Size: 52.8 MB As of Python 3.6, f-strings are a great new way to format strings. Not only are they more readable, more concise, and less prone to error than other ways of

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Introduction to Pandas and Vincent

    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 4 Lessons (15m) | Size: 36.9 MB Get an introduction to Pandas and its two main data structures as well as how to visualize your data using Vincent once you are done munging it with Pandas.

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Idiomatic Python 101

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 8 Lessons (9m) | Size: 30.3 MB Python Idioms for people coming from other languages and how to improve your idiomatic practices with Python. We will cover things to do with string

  • byOneddl     |    (FreshWap.CC)
    • 0

    Real Python - Exploring the Python math Module

    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch Genre: eLearning | Language: English | Duration: 16 Lessons (1h 20m) | Size: 169.9 MB In this course, you'll learn all about Python's math module. Mathematical calculations are an essential part of most Python development. Whether