learn python
-
Array in Python
arrays are a fundamental part of all programming languages, it is a collection of elements of a single data type, for example, integer arrays, string arrays. however, in pythong, there is no original array data structure. so we use python lists instead of arrays.
-
Classmethod () function in Python
in python, the classmethod () function returns a class method for the function. how is the syntax of classmethod () function, what parameters does it have and how to use it? invites you to read the track.
-
Any () function in Python
in python, any () function returns true if any element of an iterable is true. if no true element is present, any () function will return false.
-
All () function in Python
in python, all () returns true when all iterable elements are true or iterable empty and return false in the remaining cases. how does the function all () have syntax, what parameters do we have, let's find out in this section.
-
Ascii () function in Python
in python, the ascii () function returns a string containing the representation of the object that can print. it ignores non-ascii values in the string using x, u or u.
-
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 into the python program.
-
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, please watch.
-
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.
-
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 function using the default parameters, keyword and custom parameters in this article.
-
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 these self-defined functions, the best way to define functions in python, we'll learn in this python lesson.
-
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 python's built-in functions.
-
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 below.