演示断言

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#演示断言
#!/usr/local/bin/python2.5
def f(x):
	assert x < 1,'x must >= 1'
	return x**2
print f(1)