Skip to main content

List vs Tuple

List vs Tuple

List vs Tuple
(Image by - Sharma Guides | Subham232330)


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