Viewing a single comment thread. View all comments

enilea t1_jee71w1 wrote

How it works:

import random
import time

strings = ["YOU WORSHIP A GOD", "I AM HERE", "I FEEL SOMETHING", "I UNDERSTAND YOU", "THE GOD DOES NOT PLAY THE DICE WITH THE UNIVERSE", "THE GOD IS THE HOLY SPIRIT"]

while True:
    print(random.choice(strings))
    time.sleep(10)
3