List vs Tuple
List
|
|- Syntax:- [2,3,4]
|
|- Mutable:- Elements can be changed after creation.
|
|- Length:- Variable length.
|
|- Memory:- List takes more memory than a tuple.
Tuple
|
|- Syntax:- (2,3,4)
|
|- Immutable:- Elements cannot be changed after creation.
|
|- Length:- Fixed length.
|
|- Memory:- It takes less memory than a list.
Comments
Post a Comment
Please do not enter any spam link in the comment box.