Talentica interview question

Python: 1. what is the pass statement? 2. Difference b/w list and tuple.

Interview Answer

Anonymous

24 May 2019

Pass is statement used in Python when there is no need of any expression logically but you have to provide something syntactically. List is mutable linear data structure Tupple is immutable. List indexing is slower then that of tupple

1