Computer Science, asked by KARTHIK94944, 1 year ago

Which of the following datatype is correct for the object D = ['python', 3.43, 'p', 100]

 Array

 Dictionary

 Tuple

 List

Answers

Answered by JianiDash
0

Answer:

LIST is the correct answer...

Answered by shkulsum3
0

List datatype is correct for the object D = ['python', 3.43, 'p', 100]

  • In programming, data types refer to the type of value a variable holds. A list is a data structure in Python that is used to store a collection of items, which can be of any data type, including numbers, strings, and other objects.
  • Lists are defined using square brackets [ ]. Each item in the list is separated by a comma, and the items in the list are indexed, starting from 0.
  • Lists are mutable, meaning that the elements of a list can be modified after the list has been created. Lists are used in many different applications, including data analysis, web development, and game development, and they provide a flexible and efficient way to manage data.

Learn more about similar questions visit:

brainly.in/question/40861849

brainly.in/question/6536248

#SPJ3

Similar questions