- Bool () function in Python

In the Python programming language, bool () is used to convert values to Boolean (True or False) using standard truth test procedures. So how to use bool () function? Please
- Bytearray () function in Python

Bytearray () function in Python returns the bytearray object of a given byte array. How is the syntax of bytearray () function, what parameters does it have and how to use it?
- More than 100 Python exercises have solutions (sample code)

More than 100 Python code examples are shared by guy zhiwehu on Github, however, the solution of this series is written on the old Python version. Following TipsMake.com will be
- Package in Python

We will learn how to divide code into efficient, clear modules, using Python packages. Plus, the way to import and use your own package, or the package you download from somewhere
- Module in Python

In this Python lesson we will know how to create and import a module in Python. We will learn a few ways to import, using custom modules as well as Python's built-in modules,
- Global keywords in Python

What does the global key do and how do I use it in Python? Please follow us.
- Global variables (global), local variables (local), nonlocal variables in Python

In this Python lesson you will learn about global variables, local variables, nonlocal variables in Python and the use of these variables.
- Anonymous function, Lambda in Python

We have gone halfway through the Python function, in this lesson you will learn about anonymous functions, also known as Lambda functions. What is Lambda jaw, how is Lambda
- Recursive function in Python

In the previous articles, you learned about Python functions, built-in Python functions, and user-defined Python functions. In this article we will learn more about recursive
- Python function parameter

In the previous article we learned about the built-in Python function and the user-defined Python function with customizable number of parameters. You will know how to define a
- Python functions are user defined

Besides the built-in Python functions, you can also define Python functions yourself, these functions are called user-defined functions (Python). What are the benefits of using
- Built-in Python functions

In the previous article, you learned that Python has a basic function type, one is a built-in function, two are user-defined functions. Today, we will learn about a list of
- Functions in Python

What is Python function? How is the syntax, components, and function types in Python? How to create functions in Python? These questions will be answered in the Python lesson
- The loop technique in Python

In this Python lesson, you'll learn how to control the execution of a loop using loop control statements like break and continue.
- Break and continue commands in Python

In this article we will learn how to use the break command and continue to change the flow of a loop in Python.
- While loop in Python

What does the while loop in Python do? What is the syntax and how to use while loop? Those are the content we will approach in this Python lesson.
- For in Python loop

In this article, we will learn more about for for loop in Python as well as its variations, how to use for to repeat a string of elements in Python such as list, string or other
- If, if ... else, if ... elif ... else commands in Python

The if statement in Python is one of the most common and easy-to-learn commands. Apart from if there is if else, if elif else. Let's explore the details and see examples of these
- Learn the first Python program

In this article we will learn a simple Python program to get a little more insight into Python, before starting to learn about the main components of this programming language.
- Python data type: string, number, list, tuple, set and dictionary

In this section, you'll learn how to use Python as a computer, grasp Python's data types and take the first step towards Python programming.