Python list and tuple, both of them consists of multiple objects identified its position.
list
L=[1, 2, 3]
tuple
T=(1,2,3)
Difference between them is that tuple is immutable.
That is,
L[0]=100
is OK, but
T[0]=100
is not allowed.
Name (required)
E-mail (required)
URI
Your Comment
You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>