Python Programming - Objects - Discussion

Discussion Forum : Objects - General Questions (Q.No. 1)
1.
Which of the following is the correct way to create an object?
new Object()
Object.create()
obj = object()
obj = Object()
Answer: Option
Explanation:
In Python, objects are created using the object() constructor.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.