About 66,100,000 results
Open links in new tab
  1. Python Built-in Functions - W3Schools

    W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

  2. Python Functions - GeeksforGeeks

    Mar 27, 2026 · Python Functions are a block of statements that does a specific task. The idea is to put some commonly or repeatedly done task together and make a function so that instead of writing the …

  3. Python Functions [Complete Guide] – PYnative

    Jan 26, 2025 · Python function is a block of code defined with a name. Learn to create and use the function in detail. Use function argument effectively.

  4. Python Functions (With Examples) - Programiz

    Standard Library Functions Think of these as Python's pre-packaged gifts. They come built-in with Python, ready to use. These functions cover a wide range of common tasks such as mathematics, …

  5. 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 helps avoiding code repetition.

  6. Python Functions - Python Guides

    Learn about Functions in Python: Create reusable blocks of code using the `def` keyword, pass arguments, return values, and organize your logic efficiently.

  7. The Python Standard Library — Python 3.14.3 documentation

    Mar 25, 2026 · The Python Standard Library ¶ While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the …

  8. Python Built in Functions - GeeksforGeeks

    Jul 23, 2025 · Python operates on an interpreter system, allowing for the immediate execution of written code. Python provides a lot of built-in functions that ease the writing of code. In this article, you will …

  9. The Python Tutorial — Python 3.14.3 documentation

    Mar 25, 2026 · The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). Python is also suitable as an extension language …

  10. Jun 4, 2021 · Functions and Return Values Functions can return a value or not. A function that doesn’t return a value is sometimes called a procedure. Actually, every function returns a value, but some …