Python中没有变量=无?这是什么意思?

时间:2013-11-29 20:56:20

标签: python python-2.7

我是编码的新手。我看到一些代码,其中variable = None,这是什么意思?我无法在网上找到答案。

提前致谢!

2 个答案:

答案 0 :(得分:4)

它将名为variable的变量设置为None(Python的null / nonetype对象版本)。

参见下面的演示:

>>> variable = None
>>> type(variable)
<type 'NoneType'>
>>>

我真的认为你应该阅读其中的许多Python教程之一,因为这是一个基本的语言概念。以下是我认为有用的一些内容:

http://docs.python.org/2/tutorial/

http://www.tutorialspoint.com/python/python_overview.htm

答案 1 :(得分:0)

它将值None分配给变量variable。我建议你阅读tutorial;它会回答这个问题以及更多问题。