Login
Remember
Register
Ask a Question
What is the syntax for creating an instance of a class in Python?
0
votes
asked
May 23, 2020
in
Python
by
sharadyadav1986
What is the syntax for creating an instance of a class in Python?
#python-class-syntax
#syntax-python-class
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 23, 2020
by
Robindeniel
The syntax for creating an instance of a class is as follows:
<object-name> = <class-name>(<arguments>)
...