https://realpython.com/learning-paths/functions-and-scopes/
Enhance your Python skills by mastering functions and scope. This path covers defining functions, optional arguments, special parameters, return statements,...
learning pathfunctionsscopesrealpython
https://docs.python.org/3/library/itertools.html
This module implements a number of iterator building blocks inspired by constructs from APL, Haskell, and SML. Each has been recast in a form suitable for...
functionscreatingiteratorsefficientlooping
https://realpython.com/quizzes/python-basics-functions-and-loops/
Functions break code into smaller chunks and are great for defining actions that a program will execute several times throughout your code. Instead of writing...
pythonbasicsfunctionsloopsquiz
https://sentry.io/for/python-google-cloud-functions/
Keep everything up and running with Sentry for Python on Google Cloud Functions. Learn how to get started with Sentry for free here.
google cloudpythondebuggingfunctionscode
https://realpython.com/python-timer/
In this step-by-step tutorial, you'll learn how to use Python timer functions to monitor how quickly your programs are running. You'll use classes,...
three wayspythontimerfunctionsmonitor
https://monadical.com/posts/plot-mathematical-functions-in-python.html
How to build a mathematical functions plotter using Python, NumPy, SymPy, and Matplotlib.
plotfunctionslinespython
https://realpython.com/quizzes/python-built-in-functions/
Take this quiz to test your knowledge about the available built-in functions in Python. By taking this quiz, you'll deepen your understanding of how to...
pythonbuiltfunctionscompleteexploration
https://simonwillison.net/2023/Jun/18/symbex/
I just released a new Python CLI tool called Symbex. It’s a search tool, loosely inspired by ripgrep, which lets you search Python code for functions and...
searchpythoncodefunctionsclasses
https://realpython.com/quizzes/defining-and-calling-functions/
Practice defining and calling functions in Python, including parameters, argument types, default values, and function documentation.
python functionsdefiningcallingquizreal
https://firebase.blog/posts/2023/07/cloud-functions-firebase-ga-and-python
Cloud Functions for Firebase 2nd gen goes GA and adds support for Python
cloud functionsfirebasegengoesga
https://realpython.com/quizzes/python-lambda/
Python lambdas are little, anonymous functions, subject to a more restrictive but more concise syntax than regular Python functions. Test your understanding on...
pythonlambdafunctionsquizreal
https://dev.to/maame-codes/python-functions-l11
Apr 16, 2024 - INTRODUCTION A set of statements that returns the particular task is called a Python... Tagged with python, webdev, productivity.
python functionsdev community
https://mode.com/python-tutorial/python-methods-functions-and-libraries/
This lesson of the Python Tutorial for Data Analysis covers the Python methods .keys() and .values(), the functions type() and len(), and importing libraries.
pythonmethodsfunctionsamplibraries
https://realpython.com/quizzes/python-use-global-variable-in-function/
In this quiz, you'll test your understanding of how to use global variables in Python functions. With this knowledge, you'll be able to share data...
python functionsusingcreatingglobalvariables
https://realpython.com/podcasts/rpp/213/
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week,...
episodeconstraintprogrammingampexploring
https://vercel.com/docs/functions/runtimes/python
Jan 30, 2026 - Learn how to use the Python runtime to compile Python Vercel Functions on Vercel.
usingpythonruntimevercelfunctions
https://www.kdnuggets.com/how-to-write-readable-python-functions-even-if-youre-a-beginner
Writing readable Python functions doesn’t have to be difficult. This guide shows simple techniques to make your code clear, consistent, and easy for others...
python functionswritereadableeven
https://realpython.com/quizzes/python-main-function/
In this quiz, you'll test your understanding of the Python main() function and the special __name__ variable. With this knowledge, you'll be able to...
python quizdefiningmainfunctionsreal
https://realpython.com/inner-functions-what-are-they-good-for/
Learn how to create inner functions in Python to access nonlocal names, build stateful closures, and create decorators.
pythoninnerfunctionsgoodreal
https://realpython.com/quizzes/python-optional-arguments/
Practice Python function parameters, default values, *args, **kwargs, and safe optional arguments with quick questions and short code tasks.
usingpythonoptionalargumentsdefining