Answers for "question 5 write a function name add that takes two parameter a and b, then return the output of a + b (do not use any other variable! you do not need to run it. only write the code about how you define it.)"

2

how to add a function in python

#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
Posted by: Guest on November-11-2020
1

how to add a fuction in python

#How to define a function

def new_function(): #Creates a new function
  print("Function is here!") #Here we write what we want our function to do
  
#How to call a funtion

new_function() #Just type in the fuction's name and add brackets after it!
Posted by: Guest on November-24-2020

Code answers related to "question 5 write a function name add that takes two parameter a and b, then return the output of a + b (do not use any other variable! you do not need to run it. only write the code about how you define it.)"

Python Answers by Framework

Browse Popular Code Answers by Language