Answers for "functions python examples"

58

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!
Posted by: Guest on February-18-2020
35

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
Posted by: Guest on March-11-2020
19

create function in python

def myFunction():
  print('I am running in a function!')
Posted by: Guest on November-19-2019
2

functions python examples

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

print(multiply(4, 4))
Posted by: Guest on March-26-2021

Code answers related to "functions python examples"

Python Answers by Framework

Browse Popular Code Answers by Language