If tup=("abc","def","ghi","jkl"),then tup("def") will return
Answers
Answered by
0
It shows
^
SyntaxError: invalid syntax
>>> tup("def")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object is not callable
>>>
Similar questions