Answers for "how to call a def function in python"

1

def python

>>def add(a, b):
    return a + b
>> add(1,3)
4
>> add(403,123)
526
Posted by: Guest on November-10-2021
1

def function python

def hello(first_name,last_name,age):
    print("hello",first_name ,last_name)
    print("ur r",age,"years old")
    print("nice to meet u")


hello("Bro","Code","21")
Posted by: Guest on August-06-2021

Code answers related to "how to call a def function in python"

Python Answers by Framework

Browse Popular Code Answers by Language