变量
变量是内存中的一块区域
变量的命名:由字母、数字、下划线组成并且开头不能时数字
python中地址变量与c语言刚好相反,一条数据包含多个标签:
>>> a=1
>>> b=1
>>> id(a)
34909288
>>> id(b)
34909288
整型
注:type()可以查看数据类型
>>> num1=123
>>> type(num1)
<type 'int'>
长整型
#强制定义为长整型:num3=999L
>>> num2=9999999999999999999
>>> type(num2)
<type 'long'>
>>> num3=999L
>>> type(num3)
<type 'long'>
浮点型
#1.2e10代表的数值为1.2的10次方;
#12e9代表的数值为12的9次方;
>>> f1=12.0
>>> type(f1)
<type 'float'>
>>> f2=1.2e10
>>> type(f2)
<type 'float'>
复数类型
#python对复数提供内嵌支持,eg: 3.14j, 8.32e-36j
>>> c=3.14j
>>> type(c)
<type 'complex'>
运算符和表达式
算术运算符:+,-,*,**, /, %, //
时间: 2024-11-08 15:24:10