变量
python的变量不需要提前声明,可以直接输入:
>>> str = 'oliver'
此时,str已经被赋值字符串oliver,在赋值之前并没有提前定义与事先声明
打印值
>>> print(str)
oliver
看其数据类型
>>> print(type(str)) <class 'str'>
type()是python内置的数据类型,可以用来查看变量的数据类型
回收变量名
如果想给str赋值为数字,那么简单,直接赋值即可
>>> str = 3 >>> print(str,type(str)) 3 <class 'int'> >>>
基本数据类型
a = 10 # int类型
b = 3.14 # float类型
c = False #Boolean类型
d = 'Hello world'(或者”Hello world”) #字符串