import osfrom time import sleepfor i in range(101): print '#'*i sleep(0.2) os.system('cls')文件双击运行不要在idle下运行
i=1while True: print "#"*i i+=1