python3 基本数据类型
1.数字类型
int、float 、complex
a=2
b=3
c=3.66
d=4.44
e=complex(c,d)
f=complex(a,b)
print("the type is: ",type(e))
print(a//c)
print(e/f)
内置的 type() 函数可以用来查询变量所指的对象类型。
1.1、算数运算

1.2、比较运算:

1.3、赋值运算:

1.4、逻辑运算:

1.5、成员运算:

1.数字类型
int、float 、complex
a=2
b=3
c=3.66
d=4.44
e=complex(c,d)
f=complex(a,b)
print("the type is: ",type(e))
print(a//c)
print(e/f)
内置的 type() 函数可以用来查询变量所指的对象类型。
1.1、算数运算

1.2、比较运算:

1.3、赋值运算:

1.4、逻辑运算:

1.5、成员运算:
