Found 52 results for "tag:python_advanced"
-
! Python design patterns masterclass
https://www.youtube.com/watch?v=gAeZpA6avsA
!\1. INTRODUCTION0:00:00 1. What are design patterns0:04:13 2. Types of design patterns !\2. CREATIONAL DESIGN PATTERNS\0:07:22 1. Singleton0:...
-
002 Functional python: Avoid errors by using named tuples
https://www.youtube.com/watch?v=ctO0umkmARg
namedtuples are a simple, yet, effective way to reduce bugs in your code.. Notes: https://github.com/dmgerman/f-python
-
10 Python Concepts You NEED To Know in 2025
https://www.youtube.com/watch?v=Rkzbhmy9MMY
Checkout this FREE resource on "How To Land a Developer Role in the World of AI" made by myself, in collaboration with HubSpot: https://clickhubspot.com/acd8...
-
10 Smart Performance Hacks For Faster Python Code | The PyCharm Blog
https://blog.jetbrains.com/pycharm/2025/11/10-smart-performance-hacks-for-faster-python-code/?utm_source=weekbyte&utm_medium=email&utm_term=2025-12-09&utm_campaign=10+ways+to+speed+up+your+Python+code+why+does+evaluating+the+quality+of+new+AI+models+take+months+and+only+three+types+of+AI+products+really+work+
Learn practical optimization hacks, from data structures to built-in modules, that boost speed, reduce overhead, and keep your Python code clean.
-
10. Understanding Program Efficiency, Part 1
https://www.youtube.com/playlist?list=PLUl4u3cNGP63WbdFxL8giv4yhgdMGaZNA
MIT 6.0001 Introduction to Computer Science and Programming in Python, Fall 2016 View the complete course: http://ocw.mit.edu/6-0001F16 Instructor: Prof. Eric Grimson In this lecture, Prof. Grimson introduces algorithmic complexity, a rough measure of the efficiency of a program. He then discusses Big "Oh" notation and different complexity classes. License: Creative Commons BY-NC-SA More information at http://ocw.mit.edu/terms More courses at http://ocw.mit.edu
-
14 Advanced Python Features
https://blog.edward-li.com/tech/advanced-python-features/#6-context-managers
Python is one of the most widely adopted programming languages in the world. Yet, because of it’s ease and simplicity to just “get something working”, it’s also one of the most underappreciated. If you search for Top 10 Advanced Python Tricks on Google or any other search engine, you’ll find tons of blogs or LinkedIn articles going over trivial (but still useful) things like generators or tuples. However, as someone who’s written Python for the past 12 years, I’ve come across a lot of really interesting, underrated, unique, or (as some might say) “un-pythonic” tricks to really level up what Python can do.
-
A Guide to Python Lambda Functions - Adam Johnson
https://adamj.eu/tech/2020/08/10/a-guide-to-python-lambda-functions/
In Python, Lambda functions are rare compared to “normal” functions, and occasionally misunderstood or overused.
-
A search engine in 80 lines of Python
https://www.alexmolas.com/2024/02/05/a-search-engine-in-80-lines.html?utm_source=hackernewsletter&utm_medium=email&utm_term=fav
In this post I explain how I built a search engine from scratch using python. The resulting search engine is used to search in the posts of the blogs I follow.
-
About this course - Python Programming MOOC 2024
https://programming-24.mooc.fi/
Learn the basics of programming with the Python programming language. The focus of the course is on programming, and you will learn how to write programs and understand how they work. For example, the basics of algorithms, control structures, subprograms, object-oriented programming are covered. The course is suitable to anyone who wants to learn programming. No prior programming experience is required.
-
Advent of Code 2024 Day 7
https://www.youtube.com/@nthistlethwaite/videos
Advent of Code 2024, Day 7. Another day of "fast, but not fast enough", I got around rank 240 for both parts. This is mostly on me for writing bugs though, see if you can spot my bugs before I do in realtime! :P 0:00 - Intro 0:02 - Part 1 3:41 - Part 2 5:54 - Explanation
-
Arkana Pythona: sztuczki, kruczki, sekrety
https://www.youtube.com/watch?v=y9jIN8c5_ZA
Prowadzący: Gynvael Coldwind (szkolenie w języku polskim)[UWAGA] Szkolenie jest bezpłatne (otwarte, można dzielić się linkiem ze znajomymi), chociaż jeśli zd...
-
Clean Architectures in Python
https://leanpub.com/clean-architectures-in-python
What is a good software architecture? Why should we bother structuring the code and spending time testing it? If you like spending hours debugging your programs or staying late at the office to recover from a buggy deploy in production this book is definitely NOT for you!
-
Decorators - Advanced Python 13 - Python Engineer
https://www.python-engineer.com/courses/advancedpython/13-decorators/
A decorator is a function that takes another function and extends the behavior of this function without explicitly modifying it.
-
Decorators | Pydon't 🐍
https://mathspp.com/blog/pydonts/decorators
This article teaches the decorator pattern in Python, why it exists, how to use it, and when to use it to write efficient and idiomatic Python code.
-
Free Posts, Newsletters, Guides, & Tutorials | Zero To Mastery
https://zerotomastery.io/blog/?tag=PM#monthly
Home of the best monthly newsletters for developers & tech professionals + free posts, guides, & tutorials to sharpen your skills and level-up your career.
-
GitHub - dabeaz-course/python-mastery: Advanced Python Mastery (course by @dabeaz)
https://github.com/dabeaz-course/python-mastery?utm_source=unknownews
Advanced Python Mastery (course by @dabeaz). Contribute to dabeaz-course/python-mastery development by creating an account on GitHub.
-
HirschDaniel - YouTube
https://www.youtube.com/@HirschDaniel/videos
Regular coding content every Monday and Thursday: Software development, hacking, and reverse engineering.
-
How I solved Discord Spellcast with code
https://www.youtube.com/watch?v=hYoojWO9hh8
Discord Spellcast but I wrote code to find the best moves for me because yeah the code is at https://github.com/wintrcat/spellcastsolver/ it is written in python and uses search algorithm to find the moves enter your board state to position.txt (put $ after a 2x word tile, + after a 2x letter tile and * after a 3x letter tile) run main.py this is how to cheat in discord spellcast using Python code and how to use the discord spellcast solver
-
Inside python dict — an explorable explanation
https://just-taking-a-ride.com/inside_python_dict/chapter1.html
-
Lazy recursion, with generators
https://tushar.lol/post/recursive-generators/
Name a better pairing, I'll wait.
-
Learn by reading code: Python standard library design decisions explained
https://death.andgravity.com/stdlib
On your Python learning journey, you may have heard that a great way to get better is to read code written by other people. That's true, but finding good code to study is not easy, mostly because the design philosophy and the reasoning behind the code are rarely documented. The Python standard library is special in this regard: not only is the code open source, but the discussions around the design decisions are public, too.
-
Lecture Videos | Introduction to Computer Science and Programming in Python | Electrical Engineering and Computer Science | MIT OpenCourseWare
https://ocw.mit.edu/courses/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/video_galleries/lecture-videos/
This section includes videos of all the lectures delivered in the class.
-
Lists - Advanced Python 01 - Python Engineer
https://www.python-engineer.com/courses/advancedpython/01-lists/
List is a collection data type which is ordered and mutable. Unlike Sets, Lists allow duplicate elements.
-
MIT 6.100L Introduction to CS and Programming using Python, Fall 2022
https://www.youtube.com/playlist?list=PLUl4u3cNGP62A-ynp6v6-LGBCzeH3VAQB
Instructor: Ana Bell View the complete course: https://ocw.mit.edu/courses/6-100l-introduction-to-cs-and-programming-using-python-fall-2022/ *Note: Lectures ...
-
Mobilo - YouTube
https://www.youtube.com/@Mobilo24eu/playlists
Filmy i tutoriale szkoleniowe Kurs PowerShell dla administratora Windows. Kurs SQL - instalacja i narzędzia Kurs SQL - budowa zapytań SQL Kurs SQL - typy zaawansowane, programowanie, XML Kurs Python dla początkujących Promocja ograniczona ilością aktywacji - z kuponem YOUTUBE każdy kurs po 35 zł! Sprawdź http://www.kursyonline24.eu Więcej informacji o kursach oraz kupony promocyjne!
-
Module itertools overview
https://mathspp.com/blog/module-itertools-overview
This article briefly describes the iterators available in the Python module itertools and how to use them.
-
Nested functions in Python
https://www.pythonmorsels.com/nested-functions/
Functions in Python can be defined within another function.
-
Neural Networks from Scratch (NNFS) in Print!
https://www.youtube.com/watch?v=sNHiM0DoEAg
Get the book: https://nnfs.io twitters: twitter.com/sentdex twitter.com/daniel_kukiela Channel membership: https://www.youtube.com/channel/UCfzlCWGWYyIQ0aLC5w48gBQ/join Discord: https://discord.gg/sentdex Support the content: https://pythonprogramming.net/support-donate/ Twitter: https://twitter.com/sentdex Instagram: https://instagram.com/sentdex Facebook: https://www.facebook.com/pythonprogramming.net/ Twitch: https://www.twitch.tv/sentdex
-
Performance Analysis of Python's `dict()` and `{}`
https://madebyme.today/blog/python-dict-vs-curly-brackets/?utm_source=hackernewsletter&utm_medium=email&utm_term=code
Some time ago, during a code review, I had a discussion with a colleague of mine about preferring dict() over {} in new Python code. They argued that dict() is more readable — and expresses intent more clearly — therefore should be preferred. I wasn’t convinced by that, but at that time I didn’t have any counterarguments, so I passed. Yet that made me wonder: what’s the difference between the dict type and {} literal expression?
-
Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures
https://runestone.academy/ns/books/published/pythonds/index.html
An interactive version of Problem Solving with Algorithms and Data Structures using Python.
-
Problem Solving with Algorithms and Data Structures using Python — Problem Solving with Algorithms and Data Structures 3rd edition
https://runestone.academy/ns/books/published/pythonds3/index.html
An interactive version of Problem Solving with Algorithms and Data Structures using Python.
-
Python Concurrency: Threads, Processes, and asyncio Explained
https://newvick.com/python-concurrency/
A practical guide to Python concurrency using a Fibonacci server to demonstrate the strengths and limitations of threads, processes, and asyncio. Learn when to use each approach through hands-on examples
-
Python Practice Book — Python Practice Book 0.3 documentation
https://anandology.com/python-practice-book/index.html
-
Python Resources for Everybody
https://learnbyexample.github.io/py_resources/
Curated list of learning resources for all sorts of Python usage
-
Python for Data Analytics - Full Course Tutorial
https://www.youtube.com/watch?v=wUSDVGivd-8
🧮 Course Problems & Certificate 👉 https://lukebarousse.com/python📝 Course Code & Notes 👉 https://lukeb.co/python_repoConnect with Kelly Adams, the course...
-
Python for Everybody
https://www.coursera.org/specializations/python
Offered by University of Michigan. Learn to Program and Analyze Data with Python. Develop programs to gather, clean, analyze, and visualize ... Enroll for free.
-
Python for Fun
https://www.openbookproject.net/py4fun/
-
Python for Neuroscience · Perform your favorite data analysis in Python
https://pyforneuro.com/
This free and interactive course is designed to guide you through the basics of Python programming. The course covers most of the topics to get you started, including the basics of programming, working with packages like NumPy or Pandas for data manipulation, making human-readable plots, and working with data in different formats.
-
Python pathlib Cookbook: 57+ Examples to Master It (2022)
https://miguendes.me/python-pathlib
A mega tutorial to learn by example the idiomatic way to work with paths in Python 3 using the pathlib module.
-
Python – Laurent Luce's Blog
http://www.laurentluce.com/posts/tag/python/
-
SIMD in Pure Python | Blog
https://www.da.vidbuchanan.co.uk/blog/python-swar.html
-
Software Design by Example: Introduction
https://third-bit.com/sdxpy/intro/
-
Sorting Techniques
https://docs.python.org/3/howto/sorting.html
Author, Andrew Dalke and Raymond Hettinger,. Python lists have a built-in list.sort() method that modifies the list in-place. There is also a sorted() built-in function that builds a new sorted lis...
-
The Hitchhiker’s Guide to Python! — The Hitchhiker's Guide to Python
https://docs.python-guide.org/
An opinionated guide to the Python programming language and a best practice handbook for the installation, configuration, and usage of Python on a daily basis.
-
The Ultimate Guide to Error Handling in Python
https://blog.miguelgrinberg.com/post/the-ultimate-guide-to-error-handling-in-python
I often come across developers who know the mechanics of Python error handling well, yet when I review their code I find it to be far from good. Exceptions in Python is one of those areas that have a…
-
Understanding all of Python, through its builtins
https://tushar.lol/post/builtins/#dir-and-vars-everything-is-a-dictionary
Python has a whole lot of builtins that are unknown to most people. This guide aims to introduce you to everything that Python has to offer, through its seemingly obscure builtins.
-
What are metaclasses in Python?
https://stackoverflow.com/questions/100003/what-are-metaclasses-in-python
What are metaclasses? What are they used for?
-
https://dokumen.pub/python-mastery-unleashed-advanced-programming-techniques-9798868912730.html
https://dokumen.pub/python-mastery-unleashed-advanced-programming-techniques-9798868912730.html
-
https://wordpress.org/plugins/advanced-custom-fields
https://wordpress.org/plugins/advanced-custom-fields
-
https://www.awstats.org
https://www.awstats.org
-
ikokkari/PythonProblems: The graded lab problems for the author's course CCPS 109 Computer Science I.
https://github.com/ikokkari/PythonProblems
The graded lab problems for the author's course CCPS 109 Computer Science I. - ikokkari/PythonProblems
-
ludo-technologies/pyscn: pyscn - An Intelligent Python Code Quality Analyzer
https://github.com/ludo-technologies/pyscn?utm_source=hackernewsletter&utm_medium=email&utm_term=code
pyscn - An Intelligent Python Code Quality Analyzer - ludo-technologies/pyscn