make a function python code example

Example 1: python functions

def myFunction(say): #you can add variables to the function
  print(say)

myFunction("Hello")

age = input("How old are you?")

myFunction("You are {} years old!".format(age))

#this is what you get:

Hello
How old are you?
>>11 #lol my real age actually
You are 11 years old!

Example 2: 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 3: create function in python

def myFunction():
  print('I am running in a function!')

Example 4: python funtion

def nameOfFunction(something):
  	return something

Example 5: functions python examples

def multiply(a, b):
  return a * b

print(multiply(4, 4))

Example 6: 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)

Tags:

Cpp Example