About 7,280 results
Open links in new tab
  1. Python Functions - W3Schools

    Python Functions A function is a block of code which only runs when it is called. A function can return data as a result. A function …

  2. Python Functions - GeeksforGeeks

    Jul 29, 2026 · Python functions are reusable blocks of code used to perform a specific task. They help organize programs into …

  3. Built-in FunctionsPython 3.14.7 documentation

    1 day ago · Python doesn’t depend on the underlying operating system’s notion of text files; all the processing is done by Python …

  4. Python Tutorial - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, …

  5. Python Functions (With Examples) - Programiz

    A function is a block of code that performs a specific task. In this tutorial, we will learn about the Python function and function …

  6. Python Functions Explained: The Complete Beginner's Guide

    Jun 8, 2026 · Learn how Python functions work — defining them, using parameters, returning values, default arguments, *args, …

  7. Welcome to Python.org

    Functions Defined The core of extensible programming is defining functions. Python allows mandatory and optional arguments, …

  8. What does -> mean in Python function definitions? - Stack Overflow

    Jan 17, 2013 · It's a function annotation. In more detail, Python 2.x has docstrings, which allow you to attach a metadata string to …

  9. Python Functions - Python Guides

    Functions are one of the most powerful features in Python, enabling code reuse, abstraction, and modularity. By mastering the …

  10. Python Functions Guide: Parameters, Returns & Best Practices

    May 14, 2026 · Functions are the building blocks of every Python program. This guide covers how to define them, pass arguments, …