MACHINE LEARNING

APPLICATION OF SUPERVISED LEARNING

ARTIFICIAL INTELLIGENCE

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Python tuples are identified by “()” and internal elements are separated by “:”
A
True
B
False
C
Either A or B
D
None of the above
Explanation: 

Detailed explanation-1: -A tuple consists of a number of values separated by commas. Unlike lists, however, tuples are enclosed within parentheses.

Detailed explanation-2: -Tuple. Tuples are used to store multiple items in a single variable. Tuple is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Set, and Dictionary, all with different qualities and usage. A tuple is a collection which is ordered and unchangeable.

There is 1 question to complete.