#!/usr/bin/python import sys, os, time print """STARZZ!! Made By Alex Brown, frozen in python, and blinkies added at the end""" stars = "*" color = 0 try: for i in range(35): print stars os.system('tput setaf ' + str(color)) stars += '*' if color < 9: color += 1 else: color = 0 time.sleep(.75) except KeyboardInterrupt: pass except EOFError: pass os.system('tput setaf 0')