例如:
将值None分配给变量:
x = None print(x)
1、定义和用法
None
关键字用于定义一个空值,或是根本没有值。
None与0,False或空字符串不同。 None是其自身的数据类型(NoneType),并且只能为None。
2、使用示例
例如:
None进行布尔型if判断
x = None if x: print("Do you think None is True") else: print("None is not True...")
例如:
将值None分配给变量:
x = None print(x)
None
关键字用于定义一个空值,或是根本没有值。
None与0,False或空字符串不同。 None是其自身的数据类型(NoneType),并且只能为None。
例如:
None进行布尔型if判断
x = None if x: print("Do you think None is True") else: print("None is not True...")