assert 声明,主张 作用:检查程序,不符合条件即终止程序 a=3assert a>4 #报错assert a<4 #运行成功assert not torch.cuda.is_available() #运行成功(因为这台电脑没gpu,所以没部署cudu, cuDNN)