下面是python特性笔记,废话不多说了,加油!!!! python中的断言 Python中的断言是一种调试工具,用来测试某个断言条件,若断言条件为真,继续继续正常执行,若条件为假,则引发AssertionError异常并显示相关错误消息 #商品打折代码 def apply_discount(product, discount): price = int(product['price'] * (1.0 - discount)) assert 0 <= price <= product['price'] return price #assert断言,保证了价格大于0,并且小于原本商品