Python DeFi code example

Example 1: 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 2: def function in python

OK, basically def function() is a block where you will have one task that you can repeat all over again in the code to make it look short and clean

Example 3: explain def in python

def greet(name):
    """
    This function greets to
    the person passed in as
    a parameter
    """
    print("Hello, " + name + ". Good morning!")