Domanda di colloquio di Talentica

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

Risposta di colloquio

Anonimo

24 mag 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