← cd ..

what am i if not ice?

By Amy Feng




        import time
        import textwrap
        from random import randint

        v1 = "what am i if not ice? for i spill out my secrets the moment you touch me, pull me close, balance me in the palm of your hand. and i sweat my organs out as you hold me, your touch the furnace of a shooting star that only knows how to curse. my life is a cycle of death; use and reuse; because i’ve been inside your body and in your cup and lathered with soap and then back in my coffin, frozen to death only to be revived again."

        v2 = "and you'll try to piece me back together, but it'll never work because you never knew me."

        print(v1)

        processing = ''.join(v1)
        time.sleep(min(2,0.03*len(v1)))

        while len(processing.strip()) > 0:
        if processing == '':
            break
            
        processing = " ".join([item.replace(item[randint(0,len(item)-1)],' ') if len(item) > 0 else item for item in processing.split(" ")])
        
        time.sleep(min(2,0.05*len(processing.strip())))
        if len(processing.strip()) < 5:
            time.sleep(min(2,0.06*len(v1)))
        print(processing)

        for item in v2.split():
        print("".join(chr(randint(33,57))+item if randint(0,1) == 0 else item+chr(randint(33,57))),'\n',end=' '*randint(10,200))

        time.sleep(0.5)

Press the green button at the lower right corner to play

Amy is a high school student from Australia. She's a science nerd and an avid lover of cats. She tweets @ayqqii.