0
Q:

function 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!"""
4
def nameOfFunction(something):
  	return something
6
def my_function(a,b=1,c=2,verbose=True):
  x=a+b+c
  if verbose:
    print('Just wanted to tell you x=%d' %x)
  return x

n=my_function(3)
4
def AdminLoginPage(): # Change AdminLoginPage With Your Function Name
    return "Welcome To Admin Page"
# Made By JUB0T Please Give Credit on Discord : Rigby#9052
0
#Functions
#Functions are followed by the 'def' keyword
#Name your function
def myfunc():
  a = 'This is a func'
  
#Calling the function  
myfunc()
print(myfunc())
0
Python function
-1

New to Communities?

Join the community