Computer Science, asked by farhankingansari09, 8 months ago

which of the following data types is not supported in Python? a. numbers b. string c. list​

Answers

Answered by shabbirk78641
45

Answer:

String is the correct answer

Answered by AskewTronics
11

Option (a and b):

Explanation:

  • The data type is used to define a variable, that which type of variable is it. For example, in "s="1234"", s is a type of string data type.
  • But the user can change the data type of s variable by typecast it like "s=int(s)".
  • Now 's' is a type of integer variable.
  • But the string and number is not a data type in python language. The number type of data can be held by the integer type of variable.
  • The string type of data can be held by the character type variable.
  • So option a and b are the correct while the list is a data type in python language.

Learn More:

  • Python : https://brainly.in/question/14689905
Similar questions