Skip to content

Instantly share code, notes, and snippets.

1小时学会Python ( Learning Python in an hour )

Python是一个动态类型的高级语言,所谓“动态类型”是指Python能自动从变量值推断其类型。可以用Python内置函数type()查询一个值的类型。如

type(2)

int