摘要:
函数中使用全局变量 执行fun()后返回值为:500 a, b使用的是全局变量的值。 函数中覆盖全局变量 执行fun()后返回值为:50 a, b使用的是局部变量的值。 函数中修改改全局变量 执行fun()后返回值为:110 a使用的是全局变量a=100的值, b使用的是函数func修改后b的值10 阅读全文
摘要:
断言语句的格式 test是一个表达式,表达式求值为 时引发AssertionError异常,msg是可选的异常消息。 运行test_assert( 10)程序将抛出异常: Traceback (most recent call last): File "M:/project/untitled1/te 阅读全文