python一直报错SyntaxError: invalid syntax,怎么办?
本帖最后由 tania2046 于 2023-6-13 23:56 编辑按照书上的一顿代码逐行敲(级别太低上传不了图片)(编写C(m,n)的阶乘,其中m、n由键盘 输入),但结果无论如何都报错。请大神帮忙看下。
楼中已有大神给出解释~
Python 3.8.7 (tags/v3.8.7:6503f05, Dec 21 2020, 17:59:51) on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>> def fact(a):
f=1
for i in range(1,a+1):
f *= i
return f
n =eval(input())
SyntaxError: unindent does not match any outer indentation level
>>> def fact(a):
f=1
for i in range(1,a+1):
f *= i
return f
n = eval(input())
SyntaxError: invalid syntax
>>> def fact(a):
f=1
for i in range(1,a+1):
f *= i
return f
n=eval(input())
SyntaxError: invalid syntax
>>> n=eval(input())
n
Traceback (most recent call last):
File "<pyshell#10>", line 1, in <module>
n=eval(input())
File "<string>", line 1, in <module>
NameError: name 'n' is not defined
>>> n=input()
5
>>> n
'5'
>>> 本帖最后由 isdkz 于 2023-6-13 21:15 编辑
在你的代码中,你应该把定义函数和调用函数的代码分开。另外,你也没有定义函数来计算C(m,n)。从你的描述,我猜你可能是要计算组合数C(m, n),可以使用公式C(m, n) = m! / 。
下面是一个完成这个任务的Python代码的例子:
def fact(a):
f = 1
for i in range(1, a + 1):
f *= i
return f
def combination(m, n):
return fact(m) // (fact(n) * fact(m - n))
m = int(input("请输入m的值:"))
n = int(input("请输入n的值:"))
print("C(m,n)的值为:", combination(m, n))
这个代码首先定义了一个用于计算阶乘的函数 fact ,然后定义了一个用于计算组合数的函数 combination 。然后,它获取用户的输入并调用 combination 函数来计算结果,最后打印结果。
注意:input() 函数在Python中默认返回一个字符串,所以我们需要使用 int() 函数将输入的字符串转化为整数。
在 shell 中敲完函数之后先敲回车从 ... 切换回 >>> 之后再敲别的代码
你不能直接复制,你可以打开编辑模式(菜单栏 File -> New File),或者把代码在交互模式中一行一行复制粘贴 IDLE中不要多行一起粘贴
如果你觉得非这样不可
请
pip install ipython
然后win+r,ipython再粘贴 isdkz 发表于 2023-6-13 21:14
在你的代码中,你应该把定义函数和调用函数的代码分开。另外,你也没有定义函数来计算C(m,n)。从你的描述, ...
完美答疑!感谢大神!
核心问题就是在shell中敲完函数之后要先敲回车,切换回>>>之后再敲别的代码。否则就会报“语法错误”。但同理在shell中,这一段代码运行到m=int(input())后 ,敲回车就需要输入m的值,代码无法连续。所以……我去换编辑器了{:10_277:} def fact(a):
f=1
for i in range(1,a+1):
f *= i
return f
n = eval(input("请输入n的值:"))
m = eval(input("请输入m的值"))
c=fact(n)/(fact(m)*fact(n-m))
print(c)
在编辑器中运行的代码,书上的参考答案
页:
[1]