Function arguments and parameters in python

preview_player
Показать описание
In this tutorial we will learn about arguments and parameters in functions and also about positional arguments.
Рекомендации по теме
Комментарии
Автор

X and Y are parameters and a and b are arguments

gracygupta
Автор

B will get assigned to x and a will get assigned to y

niyazahmad
Автор

A and b are arguments .x and y are parameters

niyazahmad
Автор

Functions are used for defining small codes which can be used in certain program again nd again by assigning different values to paramters using arguments

gracygupta
Автор

Parameters are those which is a global variable of a user defined function and arguments are those which is used to assing a value to global variables

gracygupta
Автор

It will get assigned according to position

niyazahmad
Автор

a, b will be called as arguments, and x, y will be called as parameters

EverythingAboutCoding
Автор

They are still called arguments but no value b will pass to x and value a to y

chandnimotiramani