Tom
0
Q:

function in python 3

#use the def keyword to declare a function in Python
def function(args,kwargs='attribute'):
    #here is the returned value
    return 'return value'
1
# A basic function
def func():
  return 0

# A function with arguments
def func2(num1):
	return num1

# A function with type hints
def func3(num1: int) -> int:
	return num1
-1

New to Communities?

Join the community