This is wrecking my brain, and I have searched everywhere to no avail. Here is an example:
masNoun = ["Mann", "Junge"]
femNoun = ["Frau"]
neuNoun = ["Madchen", "Kind"]
masArt = ["ein"]
femArt = ["eine"]
firstProSing = ["Ich"]
seconProSing = ["du"]
thirdProSing = ["Er", "Sie"]
firstVerb = ["bin"]
seconVerb = ["bist"]
thirdVerb = ["ist"]
subject = firstProSing or seconProSing or thirdProSing
verb = firstVerb or seconVerb or thirdVerb
object1 = masArt or femArt
object2 = masNoun or femNoun
Output: Output seems to always be the first variable. I tried using the random module as follows:
object1 = random.choice(masNoun or femNoun)
The result is still the same, with the first variable being the outputted choice. The "or" function seems to not work for my example. I am stumped at this point. Any help would be greatly appreciated!