📜  如何在 python 代码示例中添加函数

📅  最后修改于: 2022-03-11 14:45:53.546000             🧑  作者: Mango

代码示例1
#How to add a function in python

#Function
def new_function(): #Tells python to define a function
  print("Hello World!") #Here is where we put what the function should do
  
#Calling a function
new_function()
#Calling a function allows us to use the function at a specific time in our code