Tools, FAQ, Tutorials:
Python Built-in Structured Data Types
Python Built-in Structured Data Types?
✍: FYIcenter.com
Python Built-in Structured Data Types are data types
provided by the Python interpreter to represent structures of data values:
Here is a list of commonly used Python Built-in Structured Data Types:
You can use the type() function to see the data type of a given structured value expression.
>>> type("FYIcenter.com")
<class 'str'>
>>> type(b'FYIcenter.com\x0A')
<class 'bytes'>
>>> type(["Age", 25])
<class 'list'>
>>> type({"Age":25, "Name":"Joe"})
<class 'dict'>
⇒ 'str' Literals and Conversions
⇐ 'float' Literals and Conversions
2018-04-07, ∼2300🔥, 0💬
Popular Posts:
How To Merge Cells in a Column? If you want to merge multiple cells vertically in a row, you need to...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...
How To Protect Special Characters in Query String in PHP? If you want to include special characters ...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How to search for the first match of a regular expression using re.search()? The re.search() functio...