Programming Language Python Tuple MCQ Question #3707
Single Choice Not Set

QWrite the output of the following:
a="atnyla"
b=list(a)
c=tuple(b)
print(c)

ID: #3707 Python Tuple MCQ 226 views
Question Info
#3707Q ID
Not SetDifficulty
Python Tuple MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A ('a', 't', 'n', 'y', 'l', 'a')
  • B ['a', 't', 'n', 'y', 'l', 'a']
  • C atnyla
  • D (atnyla)
Correct Answer

Explanation

('a', 't', 'n', 'y', 'l', 'a')

Share This Question

Challenge a friend or share with your study group.