I’m trying to convert a list to a tuple.
Most solutions on Google offer the following code:
l = [4,5,6]
tuple(l)
However, the code results in an error message when I run it:
TypeError: ‘tuple’ object is not callable
How can I fix this problem?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It should work fine. Don’t use
tuple,listor other special names as a variable name. It’s probably what’s causing your problem.