"unsupported operand type(s) for /: 'list' and 'list'" 在 cpython 中

"unsupported operand type(s) for /: 'list' and 'list'" in cpython

我对编程完全陌生。你可以说编码方面的文盲。我正在尝试使用 3.4 版解释器学习 cpython。我收到一个错误

"unsupported operand type(s) for /: 'list' and 'list'" 

在以下代码中:

sl = input("Please enter Loan amount :-  ")
si = input("Please enter desired interest rate (in decimal point) :-  ")
sn = input("Please enter number of installments :-  ")
L=float(sl)
I=float(si)
N=float(sn)

EMI = [L * I * (1+I) * N] / [((1+I) * N)-1]
print(EMI)

在Python中,列表由方括号定义(类似于C 中的数组)。在表达式中 EMI = [L * I * (1+I) * N] / [((1+I) * N)-1] 您正在尝试拆分两个列表。将它们替换为普通的圆括号可能会解决问题。