在idle界面函数错误
def firstfunction():print("这是我的第一个函数:")
print(firstfunction)
<function firstfunction at 0x0000013338290158> 请教正确的做法是什么? print(firstfunction()) def firstfunction():
print("这是我的第一个函数:")
print(firstfunction()) 你想调用函数的话要有函数名和传参数的括号,这里少了括号没法调用
def firstfunction():
print("这是我的第一个函数:")
print(firstfunction()) 这是我的第一个函数
None
>>>
加上括号后怎么出现了None def firstfunction():
print("这是我的第一个函数:")
print(firstfunction())
加上括号执行后怎么多出现了None? print(firstfunction)里打印的是function的对象。
所以应该直接调用函数 - firstfunction(),就可以了
print(firstfunction())也不行,因为furstfunction()这个函数没有return value,也就是说没有返回值,所以会返回None zhongyong6899 发表于 2019-8-24 22:17
def firstfunction():
print("这是我的第一个函数:")
print(firstfunction())
你需要这样:
def firstfunction():
print("这是我的第一个函数:")
firstfunction()
因为 firstfunction 没有返回值,所以不用 print()。 你需要在函数最后加上一对小括号
{:10_279:} @不二如是 哦,当我没 @
页:
[1]