Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 321 Bytes

interview_questions.md

File metadata and controls

5 lines (4 loc) · 321 Bytes
What is the difference between list and tuple?

The difference between list and tuple is that list is mutable while tuple is not. Tuple can be hashed for e.g as a key for dictionaries.

What is PEP 8?

PEP 8 is a coding convention, a set of recommendation, about how to write your Python code more readable.