Computer Science
Which of the following is not a Tuple in Python?
- (1,2,3)
- ("One","Two","Three")
- (10,)
- ("One")
Python Funda
2 Likes
Answer
("One")
Reason — ("One") is a string data type.
Answered By
1 Like
Related Questions
For a given declaration in Python as s = "WELCOME", which of the following will be the correct output of print(s[1::2])?
- WEL
- COME
- WLOE
- ECM
Which of the following is an incorrect Logical operator in Python?
- not
- in
- or
- and
Fill in the blanks:
The smallest individual unit in a program is known as a _________.
Fill in the blanks:
A token is also called a _________.