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, 1152👍, 0💬
Popular Posts:
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
Where to find tutorials on EPUB file format? I want to know how to create EPUB books. Here is a larg...
Where can I download the EPUB 2.0 sample book "The Metamorphosis" by Franz Kafka? You can following ...
What Is HTML? HTML (HyperText Markup Language) is the standard markup language for creating Web page...