Pergunta de entrevista da empresa Talentica

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

Resposta da entrevista

Sigiloso

24 de mai. de 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