
Python Functions - W3Schools
Information can be passed into functions as arguments. Arguments are specified after the function name, inside the parentheses. You can add as many arguments as you want, just separate …
Python exec() Function - W3Schools
The exec() function executes the specified Python code. The exec() function accepts large blocks of code, unlike the eval() function which only accepts a single expression Syntax
Python For Loops - W3Schools
The range() Function To loop through a set of code a specified number of times, we can use the range() function, The range() function returns a sequence of numbers, starting from 0 by …
Python Classes and Objects - W3Schools
To understand the meaning of classes we have to understand the built-in __init__() function. All classes have a function called __init__(), which is always executed when the class is being …
Python Online Compiler (Editor / Interpreter) - W3Schools
Python Compiler (Editor) With our online Python compiler, you can edit Python code, and view the result in your browser.
NumPy Tutorial - W3Schools
Starting with a basic introduction and ends up with creating and plotting random data sets, and working with NumPy functions:
Python Scope - W3Schools
A variable created inside a function belongs to the local scope of that function, and can only be used inside that function.
Python Modules - W3Schools
Using the dir() Function. There is a built-in function to list all the function names (or variable names) in a module. The dir() function:
Python Function Arguments - W3Schools
Information can be passed into functions as arguments. Arguments are specified after the function name, inside the parentheses. You can add as many arguments as you want, just separate …
Python Iterators - W3Schools
As you have learned in the Python Classes/Objects chapter, all classes have a function called __init__(), which allows you to do some initializing when the object is being created. The …