Basic
My own
import random
from random import choice
subject = ("I", "The ball", "You")
cha = ("uncertainity", "unconsciousness", "unclarity", "unreality", "incuriousity")
for x in range (10) :
a = choice(subject)
c1 = choice(cha)
c2 = list(cha) # to remove an element in tuple, must change to list (list = ["",""], tuple = ("","")
c2.remove(c1) # c2 is a list except the result of c1
c2 = choice(c2)
print(f"{a} as a part in the container,")
print(f"always deal with {c1} and {c2}.")
print()
The ball as a part in the container,
always deal with unconsciousness and unclarity.
You as a part in the container,
always deal with incuriousity and unclarity.
I as a part in the container,
always deal with uncertainity and unconsciousness.
You as a part in the container,
always deal with uncertainity and unconsciousness.
You as a part in the container,
always deal with unclarity and unreality.
You as a part in the container,
always deal with unreality and unconsciousness.
I as a part in the container,
always deal with unclarity and unconsciousness.
I as a part in the container,
always deal with uncertainity and incuriousity.
I as a part in the container,
always deal with unclarity and uncertainity.
I as a part in the container,
always deal with unconsciousness and unreality.