Learn From CodeLink

Python
Python101: 12. References
by Admin/ on 10 Jul 2021

Python101: 12. References

1. Introduction of references and tools The treatment of variables in Python is very different from that of C.

Python
Python101: 11. Dictionary
by Admin/ on 09 Jul 2021

Python101: 11. Dictionary

The dictionary in Python provides a flexible way to access and organize data

Python
Python101: 10. Classes and Objects
by Admin/ on 08 Jul 2021

Python101: 10. Classes and Objects

If you’ve ever learned about object-oriented thinking, you know that object-oriented thinking consists of two basic concepts: classes and objects, and let’s learn more about Python classes and objects.

Python
Python101: 9. Tuple
by Admin/ on 07 Jul 2021

Python101: 9. Tuple

A data structure in Python is a collection of data elements that are organized in some way, and these data elements can be numbers, characters, or even other data structures.

Python
Python101: 8. List
by Admin/ on 06 Jul 2021

Python101: 8. List

A data structure in Python is a collection of data elements that are organized in some way, and these data elements can be numbers, characters, or even other data structures.

Python
Python101: 7. Data Structures and Sequences
by Admin/ on 05 Jul 2021

Python101: 7. Data Structures and Sequences

A data structure in Python is a collection of data elements that are organized in some way, and these data elements can be numbers, characters, or even other data structures.

Python
Python101: 6. Modules and Packages
by Admin/ on 04 Jul 2021

Python101: 6. Modules and Packages

Modules and packages are the core of any large program, and even the Python installer itself is a package.

Python
Python101: 5. Functions
by Admin/ on 03 Jul 2021

Python101: 5. Functions

Functions are organized, reusable segments of code used to implement a single, or associated, function, so I often say that functions are the basis for their use at programmer scale.

Python
Python101: 4. Flow Control
by Admin/ on 02 Jul 2021

Python101: 4. Flow Control

In the world of programming, flow control is the foundation on which programmers operate.