Functions in python by coding xpertz

Veröffentlicht am: 01 Januar 1970
auf dem Kanal: Coding Xpertz
15
1

Functions allow use to reuse code and make the code easier to understand. To create a
function type def (define) the function name and then in parentheses a comma separated list of
values that function can accept.
This function adds 2 values and returns the sum.
CODE
def add_numbers(num_1, num_2):


Return returns a value if needed
return num_1 + num_2


You call the function by name followed by passing comma
separated values if needed and a value may or may not be
returned


print("5 + 4 =", add_numbers(5, 4)


Auf dieser Seite können Sie das Online-Video Functions in python by coding xpertz mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer Coding Xpertz 01 Januar 1970 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 15 Mal angesehen und es wurde von 1 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!