python how to use functions code example

Example 1: how to define function in python

def example():			#This defines it
  print("Example.")		#This is the defined commands

example()				#And this is the commands being run

Example 2: python def

# You can make a function by using the [def] keyword
def foo():
	print("Hello")

# You can run it by calling it as such
foo()

def add(numA, numB):
  print(numA+numB)
  # or 
  return numA+numB

num = add(1, 5)
print(num)

Example 3: python functions

def function():
  print('This is a basic function')
  
function()
// Returns 'This is a basic function'

def add(numA, numB):
  print(numA+numB)
  
add(1,2)
// Returns 3

def define(value):
  return value

example = define('Lorem ipsum')
print(example)
// Returns 'Lorem ipsum'

Example 4: python funtion

def nameOfFunction(something):
  	return something

Example 5: how to make a function in python

def your_function(arg1, arg2, arg3):
  do_something
  do_something_else

#to call the function (make it run):

your_function(something, something, something)

Example 6: functions in python

#Function Tutoral:
def hello():
  print("hello")
"""To make a function, it needs def then nameOfFunction() and a : to 
make the function work, you don't need a closing tag, as long as there is
tabbed section."""

def add(a, b): #This time, there is two inputs for the function to prossess. 
  c = a + b 
  return c
"""What the function above does is you input 2 numbers, and then it returns 
#The Value c, Calling it is as simple as add(5, 1) 
#What return does, is it almost makes a varible. So you can do:
#70 + add(10, 20) and it will return with: 100. This is because it will
go 70 + 30, as the function returned 30 because the inputs were 10 and 20."""

"""Functions can be called by code, as long as the function has already
been defined. Hope this helped you in your python journey!"""