离开python有一段时间了,所以格式化技能不存在。希望转换这种格式的东西:
[[8, -6, -4], [-10, 4, 6], [6, -8, -9]]
变成这样的东西:
(x8 v ~x6 v ~x4) ^ (~x10 v x4 v x6) ^ (x6 v ~x8 v ~x9)
然后能够将每个数字作为单独的输入引用,以更改为 T 或 F。任何指导都将不胜感激。
import random
def sample():
nums = random.sample(range(-10, 10), 3)
return nums
exlist = []
boundary = random.randint(3, 10)
count = 0
while (count < boundary):
count = count + 1
exlist.append(sample())