Computer Science

Which of the following is not a Tuple in Python?

  1. (1,2,3)
  2. ("One","Two","Three")
  3. (10,)
  4. ("One")

Python Funda

2 Likes

Answer

("One")

Reason — ("One") is a string data type.

Answered By

1 Like


Related Questions