在Python中控制索引值

时间:2018-12-18 23:02:36

标签: python python-3.x loops indexing cnf

这是我的代码:

from operator import index

import sympy
from sympy import symbols, Equivalent
from sympy.logic.boolalg import to_cnf as fnc, Implies, to_cnf
from sympy.abc import a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, v, w, x, y, z
import tkinter


def eq(a, b):
    return fnc(Equivalent(a, b), True)

inr = str(input('Enter formula: '))
x = ' '
for i in inr:
     #print(inr[inr.index(i-2)])
     if i == '>':
         i = '>>'
         x += i
     elif i == '=':

         print(i)
         i = 'Equivalent'
         x += i

     else:
         x += i

print(fnc(x, True))

因此,如果我输入=(a,b),它将起作用。 '='将调用函数Equivalent(a, b),该函数将返回公式的合取范式。我想控制索引i来分配值Equivalent而不是输入=(a,b)。我将输入(a = b),因此将'='移至三个框=(a,b)。

0 个答案:

没有答案