Please open Telegram to view this post
VIEW IN TELEGRAM
268: Advice on Beginning to Learn Python
The Real Python Podcast
Episode 268: Advice on Beginning to Learn Python
Что изменилось в обучении Python за последние несколько лет? Какие новые подходы и обновлённые советы стоит знать новичкам, начинающим свой путь в программировании? На этой неделе в подкасте Стивен Группетта и Мартин Брёус вновь обсуждают, как начать изучать Python.
Мы делимся методами поиска мотивации, построения собственных проектов и освоения основ языка. Даём советы по установке Python и объясняем, почему не стоит зацикливаться на выборе «идеального» редактора. Также рассматриваем, как использовать большие языковые модели (LLM) в процессе обучения программированию и практиковаться в умении задавать хорошие вопросы.
Topics:
00:00:00 – Introduction
00:02:36 – Martin’s teaching background
00:02:57 – Stephen’s teaching background
00:04:07 – Having a vested interest in learning
00:08:35 – No shortcut to learning the fundamentals
00:09:21 – Parallels to learning a foreign language
00:12:43 – What’s different about starting to learn Python now?
00:15:03 – Stephen’s journey to coaching and using LLMs
00:16:20 – Are LLMs helpful for learning?
00:18:50 – Teaching what you’ve learned to someone else
00:19:38 – Learning how to ask good questions
00:22:11 – Improved error messages
00:24:35 – REPL: Read Evaluate Print Loop
00:26:33 – Video Course Spotlight
00:27:48 – Installing Python and choosing an editor
00:35:16 – Considering the scale of beginner projects
00:37:39 – Should a beginner be concerned with making Pythonic code?
00:40:55 – Using LLM tools and defining your level of skill
00:42:39 – Python for Beginners: Code With Confidence - live course
00:47:32 – Looking at projects - Awesome Python
00:48:02 – Asking an LLM to explain the code generated
00:50:46 – Debuggers and seeing code run
00:51:23 – Thanks and goodbye
#python
✅ Программирование
Что изменилось в обучении Python за последние несколько лет? Какие новые подходы и обновлённые советы стоит знать новичкам, начинающим свой путь в программировании? На этой неделе в подкасте Стивен Группетта и Мартин Брёус вновь обсуждают, как начать изучать Python.
Мы делимся методами поиска мотивации, построения собственных проектов и освоения основ языка. Даём советы по установке Python и объясняем, почему не стоит зацикливаться на выборе «идеального» редактора. Также рассматриваем, как использовать большие языковые модели (LLM) в процессе обучения программированию и практиковаться в умении задавать хорошие вопросы.
Topics:
00:00:00 – Introduction
00:02:36 – Martin’s teaching background
00:02:57 – Stephen’s teaching background
00:04:07 – Having a vested interest in learning
00:08:35 – No shortcut to learning the fundamentals
00:09:21 – Parallels to learning a foreign language
00:12:43 – What’s different about starting to learn Python now?
00:15:03 – Stephen’s journey to coaching and using LLMs
00:16:20 – Are LLMs helpful for learning?
00:18:50 – Teaching what you’ve learned to someone else
00:19:38 – Learning how to ask good questions
00:22:11 – Improved error messages
00:24:35 – REPL: Read Evaluate Print Loop
00:26:33 – Video Course Spotlight
00:27:48 – Installing Python and choosing an editor
00:35:16 – Considering the scale of beginner projects
00:37:39 – Should a beginner be concerned with making Pythonic code?
00:40:55 – Using LLM tools and defining your level of skill
00:42:39 – Python for Beginners: Code With Confidence - live course
00:47:32 – Looking at projects - Awesome Python
00:48:02 – Asking an LLM to explain the code generated
00:50:46 – Debuggers and seeing code run
00:51:23 – Thanks and goodbye
#python
Please open Telegram to view this post
VIEW IN TELEGRAM
Python for Excel Users: A Beginner's Guide
Year: 2026
Author : Chi-Chun Chou
Language: English
#Book #Eng #Python
✅ Программирование
Year: 2026
Author : Chi-Chun Chou
Language: English
Introduction: Elevate Your Analytics with Python.
In today’s data-driven world, the ability to efficiently analyze and interpret information is more crucial than ever, especially in the business sector. Python for Excel Users: A Beginner’s Guide is tailored for business students and professionals who are proficient in Microsoft Excel but are ready to embark on their Python journey. As a powerful and versatile programming language, Python has become indispensable in data analysis. This book bridges the gap between Excel and Python by providing parallel exercises that demonstrate how Python can amplify business analytics tasks with unmatched efficiency and flexibility.
#Book #Eng #Python
Please open Telegram to view this post
VIEW IN TELEGRAM
Основы CPython: Часть 1
Когда ты запускаешь свой скрипт на Python, на самом деле запускается CPython-интерпретатор. Он читает твой исходный код, преобразует его в байткод, а затем исполняет этот байткод внутри виртуальной машины CPython. Благодаря серии статей ты узнаешь о всех нюансах работы CPython.
👉Читать статью
#статьи #python
✅ Программирование ©
Когда ты запускаешь свой скрипт на Python, на самом деле запускается CPython-интерпретатор. Он читает твой исходный код, преобразует его в байткод, а затем исполняет этот байткод внутри виртуальной машины CPython. Благодаря серии статей ты узнаешь о всех нюансах работы CPython.
👉Читать статью
#статьи #python
Please open Telegram to view this post
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
Основы работы с массивами в NumPy: руководство для начинающих
Видео, котором рассматривают основы работы с массивами в NumPy. Вы научитесь создавать массивы, заполнять их данными, изменять их размер, форму и многое другое.
#python #video
✅ Программирование
Видео, котором рассматривают основы работы с массивами в NumPy. Вы научитесь создавать массивы, заполнять их данными, изменять их размер, форму и многое другое.
#python #video
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
Функция reduce
reduce – это функция, которая последовательно применяет функцию к элементам списка, чтобы свести их к одному значению. Например, вычисление произведения. Благодаря данному видео ты узнаешь, как эффективно пользоваться reduce.
#видео #python #video
✅ Программирование
reduce – это функция, которая последовательно применяет функцию к элементам списка, чтобы свести их к одному значению. Например, вычисление произведения. Благодаря данному видео ты узнаешь, как эффективно пользоваться reduce.
#видео #python #video
Please open Telegram to view this post
VIEW IN TELEGRAM
Building a Virtual Assistant for Raspberry Pi: The Practical Guide for Constructing a Voice-Controlled Virtual Assistant, 2nd Edition
Year: 2025
Author : Harshil Agrawal
Language: English
This new edition of Building a Virtual Assistant for Raspberry Pi will provide new features to your virtual assistant, Melissa, adding advanced capabilities to her. Updated to the latest Python release (Python 3), the book will follow the same structure as its previous edition with new features discussed as you move forward.
#Book #Eng #RaspberryPi #Python
✅ Программирование
Year: 2025
Author : Harshil Agrawal
Language: English
This new edition of Building a Virtual Assistant for Raspberry Pi will provide new features to your virtual assistant, Melissa, adding advanced capabilities to her. Updated to the latest Python release (Python 3), the book will follow the same structure as its previous edition with new features discussed as you move forward.
#Book #Eng #RaspberryPi #Python
Please open Telegram to view this post
VIEW IN TELEGRAM