python类型和序列

1 type('This is a string')
Str

1 type(None)

NoneType

1 type(1)

int

1 type(1.0)

float

1 type(add_numbers)

function




原文地址:https://www.cnblogs.com/zhengzhe/p/8510693.html