In object-oriented programming (OOP), the main concepts include the use of classes and objects. Among the provided responses, the ones that characterize an object-oriented program are:
class Name:
def __init__(self, name):
self.name = name
This snippet defines a class Name
that has an initializer method (__init__
) which takes an argument and assigns it to an instance variable (self.name
). This encapsulates data (the name) within an object, which is a key principle of OOP.
The other snippets simply define functions or use basic input/output operations without any object-oriented structure.