zhongyong6899 发表于 2019-8-24 17:04:06

在idle界面函数错误

def firstfunction():
    print("这是我的第一个函数:")
print(firstfunction)


<function firstfunction at 0x0000013338290158>   请教正确的做法是什么?

冬雪雪冬 发表于 2019-8-24 17:07:33

print(firstfunction())

zltzlt 发表于 2019-8-24 17:08:11

def firstfunction():
    print("这是我的第一个函数:")
print(firstfunction())

htygame 发表于 2019-8-24 18:55:02

你想调用函数的话要有函数名和传参数的括号,这里少了括号没法调用
def firstfunction():
    print("这是我的第一个函数:")
print(firstfunction())

zhongyong6899 发表于 2019-8-24 21:35:40

这是我的第一个函数
None
>>>

加上括号后怎么出现了None

zhongyong6899 发表于 2019-8-24 22:17:48

def firstfunction():
    print("这是我的第一个函数:")
print(firstfunction())

加上括号执行后怎么多出现了None?

ladiesmansy 发表于 2019-8-24 23:42:23

print(firstfunction)里打印的是function的对象。
所以应该直接调用函数 - firstfunction(),就可以了
print(firstfunction())也不行,因为furstfunction()这个函数没有return value,也就是说没有返回值,所以会返回None

zltzlt 发表于 2019-8-25 08:19:53

zhongyong6899 发表于 2019-8-24 22:17
def firstfunction():
    print("这是我的第一个函数:")
print(firstfunction())


你需要这样:
def firstfunction():
    print("这是我的第一个函数:")
firstfunction()

因为 firstfunction 没有返回值,所以不用 print()。

ykn大神6 发表于 2019-8-26 08:21:51

你需要在函数最后加上一对小括号
{:10_279:}

zltzlt 发表于 2019-8-26 08:45:25

@不二如是

zltzlt 发表于 2019-8-26 08:58:02

哦,当我没 @
页: [1]
查看完整版本: 在idle界面函数错误