Conversation

Notices

  1. import time
    import os

    testString = """INSERT TEXT HERE
    """

    def read(toBeRead):
    wordList = []
    word = ""
    for char in toBeRead:
    if char != " ":
    word += char
    else:
    wordList.append(word)
    word = ""

    for word in wordList:
    print(word)
    time.sleep(0.03)
    os.system('cls')

    read(testString)

    Monday, 16-Jan-17 03:17:50 UTC from web
    1. @oracle Does that just flash the words in front of you so you don't have to move your eyes?

      Monday, 16-Jan-17 03:26:14 UTC from MuSTArDroid