Top Python interview questions with answer
Top 10 python interview questions with answer for Fresher 1. What is the difference between list and tuple in Python? The main difference between list and tuple is that list is mutable while tuple is immutable. In a list, elements can be changed while in a tuple, they cannot be changed. Lists are typically … Read more