无法在Python中定义函数

时间:2014-03-23 23:32:47

标签: python function python-3.4

每当我编写一个函数然后在Shell中运行它时,它就会出现空白。我只编程了大约一个月,所以不要让事情变得非常困难。

我的代码如下所示:

def intro():

   print("hello world")

然后当我跑它时,它。弹出没有空中消息。除了我的代码,2行是触摸

2 个答案:

答案 0 :(得分:4)

你写了一个函数;现在你必须告诉它运行这个功能!

陷阱>

def intro():                # <= this tells Python what "intro" means
    print("hello, world")

intro()                     # <= this tells Python to actually do it

答案 1 :(得分:0)

你需要打电话给你的功能!在定义函数后用intro()执行此操作(Hugh在我的答案之上有一个很好的例子)。最好先阅读一些基础知识;)Codeacademy如果您有兴趣,可以有一个很棒的Python课程。