Search Results

Results for "function parameters"

46 articles found

Function blocks in code editor Functions & Modules
1 min read

Functions: Writing Reusable Code

Functions are the building blocks of any non-trivial Python program. They allow you to encapsulate a piece of logic and reuse it without copying and pastin…

JavaScript code highlighting the 'this' keyword JavaScript
1 min read

Understanding 'this' in JavaScript

The 'this' keyword in JavaScript is notoriously confusing because its value depends on how the function is called. In the global context, this refers to th…

API integration concept APIs
1 min read

Working with APIs in Python

APIs (Application Programming Interfaces) allow different software applications to talk to each other. Many services provide APIs to let developers access…

Asynchronous programming concept Concurrency
1 min read

Introduction to Python's AsyncIO

Asynchronous programming is a way to write concurrent code that can handle many tasks without the overhead of threads or processes. AsyncIO is Python's lib…

Software testing concept Testing & Debugging
1 min read

Testing Your Python Code with unittest

Testing is an essential part of professional software development. It ensures your code works as expected and catches bugs before they reach production. Py…

Web development with Flask framework Web Development
1 min read

Building Web Apps with Flask

Flask is a micro web framework for Python. It is lightweight and easy to get started with, making it perfect for beginners who want to build web applicatio…