Computer Science, asked by atulvaibhav1234, 1 year ago

How many string types does python support? How are they different from one another

Answers

Answered by prooo
14
Data types in Python

Every value in Python has a datatype. Since everything is an object in Python programming, data types are actually classes and variables are instance (object) of these classes.
There are various data types in Python. Some of the important types are listed below.

Python Numbers

Integers, floating point numbers and complex numbers falls under Python numbers category. They are defined as int, float and complex class in Python.
We can use the type() function to know which class a variable or a value belongs to and the isinstance() function to check if an object belongs to a particular class.

thank you
i hope it helps you dear
plz mark it as brainliest
follow me for more answers



prooo: hey does it help you
prooo: if yes then plz follow me for more answers
Answered by kripa1048
1

Answer:

  • There are 2 types of strings supported by python. Strings stored as characters and stored as bytes.

  • Strings stored as characters are represented as unicode in python 2 or str in python 3. Specifying a unicode string can be done by adding ‘u' before string. Eg u'hello' will be a unicode string.

  • Strings stored as bytes are represented as str in python 2 or bytes in python 3. Specifying a byte string can be done by adding ‘b' before string. Eg b'hello' will be a byte string.

  • In case of text formats such as UTF-8, python supports all formats.
Similar questions