Which of the following statement will give the result ------- <class 'list'> for the statement type(data) *
1 point
data=(11,'Sita',45.36)
data=set({11,'Sita',45.36})
data=[11,'Sita',45.36]
data={11,'Sita',45.36}
Answers
Answered by
3
data=[11,'Sita',45.36] will give the result <class 'list'> for the statement type(data) *
Similar questions