Computer Science, asked by s1274soumonil3377, 19 days ago

-- is the keyword used to mark the start of function header​

Answers

Answered by gopiachari9
1

Answer:

mark me as brilliantist

Explanation:

Explanation: Keyword def marks the start of function header

def is the answer

Answered by TheRuhanikaDhawan
0

Answer:

def

Explanation:

def  is the keyword used to mark the start of function header​ in python

Syntax

def function_name(parameters):  

statement(s)

Example

def sum(a,b):

       return a+b;

 

a = int(input("Enter a: "))

b = int(input("Enter b: "))

print("Sum = ",sum(a,b))

Similar questions