1、pass语句什么也不做,一般作为占位符或者创建占位程序,pass语句不会执行任何操作2、保证格式完整 3、保证语义完整
if(true) ;//do nothing else { //do something }
if true: pass #do nothing else: #do something