+ 1
[DUPLICATE] What is parentheses
simple operations
2 Answers
+ 1
'(' and ')' are parantheses and usually hold parameters.
For example consider this in Python:
print(5)
'print' is the name of the function.
'print' has one Parameter (the value 5)
and the Parameter is given to the function through paranthesis.
hope this helps