Computer Science, asked by pawanpaul2322, 1 year ago

What is a sequence data type in Python?

Answers

Answered by Anonymous
4

Answer:

Data science can be defined as a blend of mathematics, business acumen, tools, algorithms and machine learning techniques, all of which help us in finding out the hidden insights or patterns from raw data which can be of major use in the formation of big business decisions

Explanation:

Answered by aditijaink283
1

Answer:

The answer to the given question is:

Sequences allow you to store multiple values ​​in an orderly and efficient way. There are several types of sequences: strings, Unicode strings, lists, tuples, byte arrays, and range objects.

Explanation:

More details about what is a sequence data type in Python:

  • Dictionaries and sets are containers for inconsistent data.
  • The string is an immutable sequence of Unicode code points.
  • Lists are mutable sequences commonly used to store collections of homogeneous elements.
  • A tuple is an immutable sequence commonly used to store heterogeneous data collections, such as a 2-tuple created with the built-in enumerate() function.
  • The Bytearray object is mutable and supports mutable sequence operations in addition to normal byte and byte array operations.
  • The range type is an immutable sequence of numbers and is typically used a certain number of times in a loop.

#SPJ3

Similar questions