+ 4
Parentheses meaning please?
7 ответов
+ 10
Simply, brackets
+ 6
There is no specific reason or meaning of parenthesis in python or even in other programming languages. It is same as asking about "what is the meaning of colon(:)? " in python or something like that. There are numerous ways in which it can be used. Basically, it will appear in class inheritance, defining a function, making a special operation to evaluate first, etc.......
+ 6
Parentheses means ( )
( is an opening Parentheses
and ) is a closing Parentheses.
+ 3
Parentheses is just like a container for any function which contains parameters and when calling function takes arguments and many more etc.don't be confuse it just coding style and these are just brackets.
+ 3
Parentheses in Python have atleast 5 meanings.
Parentheses can be used to:
Change operation precedence,
Create tuples,
Define functions,
Call functions,
Create class inheritions.
+ 2
At books Parentheses meaning a operator() to call a function or a method - for oop
0
Simply,() bracket where u pass in the parameter and arguements.