Any tutorial must be as correct as possible, especially if it's geared towards beginners.
Quote:this post will cover all that you need to know about all the different Python Data-Types.
All the different Python Data-Types? If we consider built-ins only then
Documentation > The Python Standard Library > Built-in Types provides much more extensive selection (range, bytes, bytearray etc). If we are talking about Python Data-Types then have look at
Documentation > The Python Standard Library > Data Types
In Python documentation there is 'sequence' and not 'data collections'. Set is separate group defined as "unordered collection of distinct hashable objects" and it's not seqence (or data collection what you use as synonym)
Also it would be good to provide what the hell data type is and why it's important.
From Python documentation: "An object’s type determines the operations that the object supports (e.g., “does it have a length?”) and also defines the possible values for objects of that type."
Official ISO/IEC 2382-15:2001, "Information technology — Vocabulary — Part 15: Programming languages" definition:
Quote:data type
datatype (synonym)
‣ A defined set of data object s of a specified data structure and a set of permissible operations, such that these data objects act as operands in the execution of any one of these operations.
Example:
▫ An integer type has a very simple structure, each occurrence of which, usually called value, is a representation of a member of a specified range of whole numbers and the permissible operations include the usual arithmetic operation s on these integers.
Note:
▫The term „type„ may be used instead of „data type„ when there is no ambiguity.
'True and False are the two Boolean operators.'??? Python operators are found here
Documentation > The Python Language Reference > 2. Lexical Analysis > 2.5. Operators. And yes, operator means: "A symbol that represents the action to be performed in an operation"
Also I think there are way too many "basic" tutorials for Python. Writing one can be useful to organize your own thoughts but don't expect much feedback from readers. I think it's much better when you present a program that you wrote to play blackjack on your blog. Write about programs that do something!