Python
Python Chapter 5
Write the definition of a function add, that receives two int parameters and returns their sum.
Write the definition of a function add, that receives two int parameters and returns their sum.
Write the definition of a function add, that receives two int parameters and returns their sum.
def add(int1,int2):
return int1+int2
Learn More :