0 0 votes Python Interview Questions python python-basics python-interview + – 6% Accept Rate Accepted 1 answers out of 17 questions askpython 1.4k points 18 19 25 answer comment Share 0 reply Please log in or register to add a comment.
0 0 votes List Tuple Lists are mutable i.e they can be edited. Tuples are immutable (tuples are lists which can't be edited). Lists are slower than tuples. Tuples are faster than list. Syntax: list_ 1 = [10, 'Chelsea', 20) Syntax: tup_ 1 = (10, 'Chelsea' , 20) askpython answered Jul 9, 2019 askpython 1.4k points 18 19 25 comment Share 0 reply Please log in or register to add a comment.