📜  如何在python代码示例中获取变量的类型

📅  最后修改于: 2022-03-11 14:45:28.725000             🧑  作者: Mango

代码示例5
# type(name_of_variable):

x = 7.0

print(type(x))
#