Real Python
Real Python
  • Видео 646
  • Просмотров 9 097 688
Python's Command-Line Utilities & Music Information Retrieval Tools | Real Python Podcast #208
What are the built-in Python modules that can work as useful command-line tools? How can these tools add more functionality to Windows machines? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects.
👉 Links from the show: realpython.com/podcasts/rpp/209/
Christopher shares an article by Trey Hunner about Python's extensive collection of command-line utilities? The piece digs into general-purpose tools that format JSON data or start a simple web server and additional utilities for working with your Python code from the terminal.
We cover a set of Jupyter Notebooks for teaching and learning the art of music processing and Music Inf...
Просмотров: 100

Видео

Introduction to Rounding Numbers in Python
Просмотров 3512 часа назад
This is a preview of the video course, "Rounding Numbers in Python." Understanding how rounding works in Python can help you avoid biasing your dataset. This is an important skill. After all, drawing conclusions from biased data can lead to costly mistakes. This is a portion of the complete course, which you can find here: realpython.com/courses/rounding-numbers-python/ The rest of the course c...
Detecting Outliers in Your Data With Python | Real Python Podcast #208
Просмотров 68216 часов назад
How do you find the most interesting or suspicious points within your data? What libraries and techniques can you use to detect these anomalies with Python? This week on the show, we speak with author Brett Kennedy about his book "Outlier Detection in Python." 👉 Links from the show: realpython.com/podcasts/rpp/208/ Brett describes initially getting involved with detecting outliers in financial ...
Using Python to List the files in a Directory
Просмотров 72319 часов назад
This is a preview of the video course, "Listing All Files in a Directory With Python." Getting a list of all the files and folders in a directory is a natural first step for many file-related operations in Python. When looking into it, though, you may be surprised to find various ways to go about it. This is a portion of the complete course, which you can find here: realpython.com/courses/effic...
Decomposing Software Problems & Avoiding the Trap of Clever Code | Real Python Podcast #207
Просмотров 61814 дней назад
How do you effectively break a software problem into individual steps? What are signs you're writing overly clever code? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects. 👉 Links from the show: realpython.com/podcasts/rpp/207/ We discuss an article about de-warping images of book pages. We both found the piece a good study on de...
Python Interfaces - Understanding Informal Interfaces
Просмотров 1,6 тыс.14 дней назад
This is a preview of the video course, "Python Interfaces: Object-Oriented Design Principles." Interfaces play an important role in software engineering. As an application grows, updates and changes to the code base become more difficult to manage. More often than not, you wind up having classes that look very similar but are unrelated, which can lead to some confusion. This is a portion of the...
Building Python Unit Tests & Exploring a Data Visualization Gallery | Real Python Podcast #206
Просмотров 1 тыс.21 день назад
How do you start adding unit tests to your Python code? Can the built-in unittest framework cover most or all of your needs? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects. 👉 Links from the show: realpython.com/podcasts/rpp/206/ We dig into a recent tutorial by Leodanis Pozo Ramos about writing unit tests using Python's unitte...
Working With Python's Iterators, Iterables, and Iteration
Просмотров 88621 день назад
This is a preview of the video course, "Efficient Iterations With Python Iterators and Iterables." Python’s iterators and iterables are two different but related tools that come in handy when you need to iterate over a data stream or container. Iterators power and control the iteration process, while iterables typically hold data that you want to iterate over one value at a time. This is a port...
Start Working With Python's Tkinter GUI Framework
Просмотров 94728 дней назад
This is a preview of the video course, "Building a Python GUI Application With Tkinter." Python has a lot of GUI frameworks, but Tkinter is the only framework that’s built into the Python standard library. Tkinter has several strengths. It’s cross-platform, so the same code works on Windows, macOS, and Linux. Visual elements are rendered using native operating system elements, so applications b...
Considering Accessibility & Assistive Tech as a Python Developer | Real Python Podcast #205
Просмотров 570Месяц назад
What's it like to learn Python as a visually impaired or blind developer? How can you improve the accessibility of your Python web applications and learn current guidelines? This week on the show, Real Python community member Audrey van Breederode discusses her programming journey, web accessibility, and assistive technology. 👉 Links from the show: realpython.com/podcasts/rpp/205/ Audrey shares...
HTML Basics for Python Developers
Просмотров 910Месяц назад
This is a preview of the video course, "HTML and CSS Foundations for Python Developers." If you’re interested in web development with Python, then knowing HTML and CSS will help you understand web frameworks like Django and Flask better. But even if you’re just getting started with Python, HTML and CSS can enable you to create small websites to impress your friends. This is a portion of the com...
Querying OpenStreetMaps via API & Lazy Evaluation in Python | Real Python Podcast #204
Просмотров 659Месяц назад
Would you like to get more practice working with APIs in Python? How about exploring the globe using the data from OpenStreetMap? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects. 👉 Links from the show: realpython.com/podcasts/rpp/204/ We share an article from the Pybites blog about building queries using the Overpass API for Op...
Methods to Flatten a List of Lists in Python
Просмотров 969Месяц назад
This is a preview of the video course, "Flattening a List of Lists in Python." Sometimes, when you’re working with data, you may have the data as a list of nested lists. A common operation is to flatten this data into a one-dimensional list in Python. Flattening a list involves converting a multidimensional list, such as a matrix, into a one-dimensional list. This is a portion of the complete c...
Embarking on a Relaxed and Friendly Python Coding Journey | Real Python Podcast #203
Просмотров 691Месяц назад
Do you get stressed while trying to learn Python? Do you prefer to build small programs or projects as you continue your coding journey? This week on the show, Real Python author Stephen Gruppetta is here to talk about his new book, "The Python Coding Book." 👉 Links from the show: realpython.com/podcasts/rpp/203/ Stephen has been teaching Python to adults and children for many years. With his n...
Using Global Variables in Python Functions
Просмотров 1,2 тыс.Месяц назад
This is a preview of the video course, "Working With Global Variables in Python Functions." A global variable is a variable that you can use from any part of a program, including within functions. Using global variables inside your Python functions can be tricky. You’ll need to differentiate between accessing and changing the values of the target global variable if you want your code to work co...
Pydantic Data Validation & Python Web Security Practices | Real Python Podcast #202
Просмотров 796Месяц назад
Pydantic Data Validation & Python Web Security Practices | Real Python Podcast #202
Working With Scopes Practice: Python Basics Exercises
Просмотров 876Месяц назад
Working With Scopes Practice: Python Basics Exercises
Decoupling Systems to Get Closer to the Data | Real Python Podcast #201
Просмотров 7182 месяца назад
Decoupling Systems to Get Closer to the Data | Real Python Podcast #201
Understanding Python's raise for Crafting Exceptions
Просмотров 8432 месяца назад
Understanding Python's raise for Crafting Exceptions
Avoiding Error Culture and Getting Help Inside Python | Real Python Podcast #200
Просмотров 6612 месяца назад
Avoiding Error Culture and Getting Help Inside Python | Real Python Podcast #200
Creating QR Codes with Python
Просмотров 9212 месяца назад
Creating QR Codes with Python
Leveraging Documents and Data to Create a Custom LLM Chatbot | Real Python Podcast #199
Просмотров 8472 месяца назад
Leveraging Documents and Data to Create a Custom LLM Chatbot | Real Python Podcast #199
Working with Tensors and TensorFlow
Просмотров 1,1 тыс.2 месяца назад
Working with Tensors and TensorFlow
Build a Video Game With Python Turtle & Visualize Data in Seaborn | Real Python Podcast #198
Просмотров 5942 месяца назад
Build a Video Game With Python Turtle & Visualize Data in Seaborn | Real Python Podcast #198
Hunting for Python Easter Eggs - Code Conversation
Просмотров 4162 месяца назад
Hunting for Python Easter Eggs - Code Conversation
Using Python in Bioinformatics and the Laboratory | Real Python Podcast #197
Просмотров 7892 месяца назад
Using Python in Bioinformatics and the Laboratory | Real Python Podcast #197
Moving from Flat Files to SQLite in Python
Просмотров 1,3 тыс.3 месяца назад
Moving from Flat Files to SQLite in Python
Exploring Duck Typing in Python & Dynamics of Monkey Patching | Real Python Podcast #196
Просмотров 7293 месяца назад
Exploring Duck Typing in Python & Dynamics of Monkey Patching | Real Python Podcast #196
Dictionaries Practice: Python Basics Exercises
Просмотров 1,3 тыс.3 месяца назад
Dictionaries Practice: Python Basics Exercises
Building a Healthy Developer Mindset While Learning Python | Real Python Podcast #195
Просмотров 9363 месяца назад
Building a Healthy Developer Mindset While Learning Python | Real Python Podcast #195

Комментарии

  • @rishiraj2548
    @rishiraj2548 2 часа назад

    🙂👍

  • @BUY_YOUTUB_VIEWS_252
    @BUY_YOUTUB_VIEWS_252 18 часов назад

    Thumbs up for your hard work and dedication!

  • @1234567qwerification
    @1234567qwerification 20 часов назад

    4:47 You get 1.0, not 1 :)

  • @rishiraj2548
    @rishiraj2548 День назад

    👍

  • @puffinjuice
    @puffinjuice День назад

    This is an important course because rounding numbers doesnt make sense in python! I was shocked to find there is no function to perform swedish rounding. Even if they think its not a good idea to use this rounding method a function should be available in one of the foundational packages.

  • @Investmentpunk1
    @Investmentpunk1 День назад

    Who are the 2 guys presenting the topic in the video? It's an unbelievable good presentation and explanation of the topic! Did you guys do any other video tutorials or content? Where can i find it?

  • @insightful_code
    @insightful_code День назад

    Work with Python in Windows is laughable 🤷‍♂

  • @zunaidhassan9662
    @zunaidhassan9662 2 дня назад

    Thanks for the video. Where is the GIL follow-up video? Couldn't find in the channel.

  • @artistpw
    @artistpw 2 дня назад

    This really helps to see how to use pickle. Thanks so much for making this video. It would be nice if you might include this code into a github repository.

  • @monad99
    @monad99 2 дня назад

    it's not pp8 it's pEp8

  • @NickSangiamo
    @NickSangiamo 4 дня назад

    Thank you for making this video! You explained the information so clearly and I was able to follow along very easily as a new Python student. :)

  • @magno5157
    @magno5157 6 дней назад

    It's kinda cringe to have one person who has all the answers and the other pretends like he doesn't know and asks questions. Could you all just chat normally without having any one of you pretend like he doesn't know the topic at all?

  • @rishiraj2548
    @rishiraj2548 7 дней назад

    🎉

  • @ibrahimoglu
    @ibrahimoglu 7 дней назад

    👍

  • @rishiraj2548
    @rishiraj2548 8 дней назад

    🙂👍

  • @MadSimple
    @MadSimple 8 дней назад

    Check out Illinois Mono

  • @wzrd3311
    @wzrd3311 11 дней назад

    Criminally underrated. What a succinct explanation for a library.

  • @rishiraj2548
    @rishiraj2548 14 дней назад

    Good evening

  • @edtechbymeera
    @edtechbymeera 19 дней назад

    Thank you for the eye-opener guide

  • @Dhieumatiop
    @Dhieumatiop 19 дней назад

    Thank a lot I understand now

  • @yuvaraj9840
    @yuvaraj9840 21 день назад

    Good topic and this is podcast how do we know the real tutorial in screen. Please guide me

    • @realpython
      @realpython 17 дней назад

      All the links from the show: realpython.com/podcasts/rpp/206/

  • @rishiraj2548
    @rishiraj2548 21 день назад

    👍👍

  • @nayankothari4725
    @nayankothari4725 21 день назад

    Thanks for sharing this amazing tutorial ❤ @Real python

  • @ebouchut
    @ebouchut 21 день назад

    Thank you. It is clear concise and helpful

  • @darwinvasquez1051
    @darwinvasquez1051 21 день назад

    Really good explanation, thanks

  • @mikesfarmmikesfarm3977
    @mikesfarmmikesfarm3977 23 дня назад

    It looks like if you create a local variable in a function and return it to the main, that it becomes a global ?

  • @hanielahi247
    @hanielahi247 24 дня назад

    Not bad 😔

  • @itpugil
    @itpugil 24 дня назад

    Finally caught up to this podcast. I use to listen to a lot of your videos to keep my motivation up. Until I slacked off and its been almost a year. Now I'm reviewing all the notes I took so I can proceed where I left off.

  • @htg7127
    @htg7127 25 дней назад

    Youre a hero

  • @II-er7gj
    @II-er7gj 26 дней назад

    this really sucks!!! I have learned python beyond these limits what offer this PySimpleGUI.

  • @yvanpearson7024
    @yvanpearson7024 27 дней назад

    great talk

  • @larry78211
    @larry78211 27 дней назад

    I can see why he is biased.....His cert was a bogus 10 question exam. Ib addituib, most people graduate college and the only skill they've developed is how to cheat their way through school. .

  • @enochmvula-ck3gy
    @enochmvula-ck3gy 28 дней назад

    I can't find the playlist on you're profile, what's the name

  • @wintur2856
    @wintur2856 28 дней назад

    😁

  • @wintur2856
    @wintur2856 28 дней назад

    Great Video!

  • @wintur2856
    @wintur2856 28 дней назад

    Thanks for this video, the new youtubers just say whatever. 😃

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 28 дней назад

    Nice! Keep it up.

  • @arpitgaur4310
    @arpitgaur4310 29 дней назад

    It's more about the neatness and explainability of the project rather than the complexity of the project

  • @rishiraj2548
    @rishiraj2548 29 дней назад

    Thanks

  • @babiganteng1967
    @babiganteng1967 29 дней назад

    Link the application please🙏🏻

  • @babiganteng1967
    @babiganteng1967 29 дней назад

    What the application please, I am newbie🙏🏻

  • @danmcclelland5476
    @danmcclelland5476 Месяц назад

    Great tutorial! Thanks!

  • @dahewang4981
    @dahewang4981 Месяц назад

    Here's my definition: continue means skipping the rest of the code in the current iteration of the loop(ie invalid input), then immediately begins with the next iteration of the same Loop.

  • @BersekViking
    @BersekViking Месяц назад

    Click bait

  • @damonguzman
    @damonguzman Месяц назад

    What’s up with the low quality AI voice?

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 Месяц назад

    Thank you ❤

  • @ronakronu
    @ronakronu Месяц назад

    gemini recommended this ,greatt

  • @TenzinTselha
    @TenzinTselha Месяц назад

    Is it possible to locally host this map and use the map offline?

  • @rishiraj2548
    @rishiraj2548 Месяц назад

    Thanks 😌👍

  • @BersekViking
    @BersekViking Месяц назад

    click bait