跳转至

数据入门

上面我们说过Python支持面向对象的编程范式。 这意味着 Python 将数据视为解决问题过程的焦点。 在Python以及任何其他面向对象的编程语言中,我们定义来描述数据的样子(状态)以及数据可以做什么(行为)。 类类似于抽象数据类型,因为类的用户只能看到数据项的状态和行为。 在面向对象的范式中,数据项被称为对象。 对象是类的实例。

原文

Getting Started with Data

We stated above that Python supports the object-oriented programming paradigm. This means that Python considers data to be the focal point of the problem-solving process. In Python, as well as in any other object-oriented programming language, we define a class to be a description of what the data look like (the state) and what the data can do (the behavior). Classes are analogous to abstract data types because a user of a class only sees the state and behavior of a data item. Data items are called objects in the object-oriented paradigm. An object is an instance of a class.


最后更新: 2023年10月15日
创建日期: 2023年10月10日