What is the difference between functions and methods in the Python programming structure?
- Functions can use global variables whereas methods can only use local variables.
- Functions are called by a referencing object whereas methods are called by the names.
- Functions can pass arguments whereas methods can pass only predefined keywords.
- Functions are standalone code blocks whereas methods are code blocks associated with an object.
Explanation: The difference between methods and functions is that functions are standalone code blocks while methods are code blocks associated with an object, typically for object-oriented programming.
Exam with this question: DevNet Associate Course Final Exam Answers
Please login or Register to submit your answer