PYTHON INTERVIEW QUESTIONS
WHAT IS PYTHON? Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it h as fewer syntactical constructions than other languages. WHAT ARE THE SUPPORTED DATA TYPES IN PYTHON? Python has five standard data types: Numbers String List Tuple Dictionary WHAT IS TUPLES IN PYTHON? A tuple is another sequence data type that is similar to the list. A tuple consists of a number of values separated by commas. Unlike lists, however, tuples are enclosed within parentheses. WHAT IS THE DIFFERENCE BETWEEN TUPLES AND LISTS IN PYTHON? The main differences between lists and tuples are − Lists are enclosed in brackets ( [ ] ) and their elements and size can be changed, while tuples are enclosed in parentheses ( ( ) ) and cannot be updated. Tuples can be thought of as read-only lists. WHAT ARE PYTHON'