What is the difference between `list` and `tuple` in Python?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Lists are mutable, meaning you can change their content after creation. Tuples are immutable and cannot be changed once defined.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Lists are mutable, meaning you can change their content after creation. Tuples are immutable and cannot be changed once defined.
| Is This Answer Correct ? | 0 Yes | 0 No |
How many name spaces are defined in python?
What does serialization mean in python?
Is python good for beginners?
Tell me what is the difference between django, pyramid, and flask?
How will you check python version?
How to run script in python?
Python list of lists, changes reflected across sublists unexpectedly
What is the necessity to use pass statement in python program?
How to pass indefinite number of arguments to any function?
What is a script mode?
Can you remove the whitespaces from the string “aaa bbb ccc ddd eee”?
What is the function of negative index?