标签:err erro python float als def error 数据 print
def count1():
print("this is count1")
count2()
count1()
def count2():
print("this is count2")
结果为:
NameError: name ‘count2‘ is not defined
int----str----bool----list----float
注意:string转换成bool类型
bool("True")
True
bool("False")
True
bool("hello")
True
bool("")
False
bool(0)
False
标签:err erro python float als def error 数据 print
原文地址:https://www.cnblogs.com/Stephanie-boke/p/11711313.html