Python/gloss python function call

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python调用函数

调用函数

要调用函数,请在函数名称后加上括号:

  def my_function():
  print("Hello from a function")


my_function()