00:01
This question asks us in python, what are the values passed into functions as input called as? so in python, we have a function, for example, the famous print function, right? it takes in a value of a string here in python.
00:20
So what is this value here called that we're passing into the function, right? so in python and also other programming languages such as java and even, you know, c, these values are usually referred to as parameters.
00:40
And these parameters often have types that are restricted to that when they passed in, right? so in python, the print statement doesn't always have to be a string.
00:51
The parameter could be an integer you could pass in, you could have print hello world.
00:57
Which would be a string, but you can also have print 1, which is an integer, or you can also have print 1 .01, which is a double value.
01:09
All these work in python, so these values that you pass in are called parameters...