Answer:
Argument
Explanation:
The function is the block of the statement which performs the special task.
when we define the function in the program then we have to call that function.
the syntax for defining the function:
type name(parameter_1, parameter_2,...){
statement;
}
the syntax for calling the function:
name( argument_1, argument_2,...);
Meaning of parameter and argument
The argument is used to send the value into the function definition. this can be passed by value or pass by reference.
The parameter is used to receive the value send by calling function.
Therefore, the answer is the Argument.
Performance would be the answer
Answer:
def length( mystring):
count = 0
for i in mystring:
count += 1
return count
def reversed( mystring):
strlist = []
for i in range(length(mystring)):
strlist.append(mystring[(length(mystring) - 1) - i])
txt = "".join(strlist)
return txt
string = 'Yolanda'
print(reversed(string))
Explanation:
The python module defines two functions 'reversed' and 'length'. The length function counts the number of characters in a string variable while the reversed function reverses the string variable value.
Judge the quality of any given data can a human till do better and fater than any Machine Learning (ML).
<h3>
What is Machine Learning (ML)?</h3>
- Switch between fields of expertise. a thorough understanding of the facts' meaning. Check the veracity of any information that is provided.
- According to some scientists, AI will replace jobs with a single output. A mental task may also be mechanized in the future if it can be finished by a person in less than a second.
- Expressing empathy, making others feel good, taking care of others, expressing feelings and vulnerability in a sympathetic way, and making people laugh are all examples of being creative and artistic for the purpose of being creative. The personal touch is important in most occupations and, in certain cases, it completes the task entirely.
- Machines can perform as well as or better than humans in some tasks, despite their slower rate of development.
To learn more about Machine Learning (ML) refert to:
brainly.com/question/25523571
#SPJ4