Enjoying the preview?
This is the free first lesson. Get full access — request a demo or sign in.
Enjoying the preview?
This is the free first lesson. Get full access — request a demo or sign in.
These lessons begin by explaining how to use the two most common sequence types in Python: the string and the list. Strings, which are sequences of characters, employ the Unicode standard (which expands the much simpler ASCII standard) to represent nearly every alphabet in the world. A discussion of mapping characters to numbers is followed by example code. String formatting is covered using the format method of the string class and then the module concludes with a demonstration of the Python dictionary.
LEARNING OBJECTIVES:
It covers how to use Python's two most common sequence types, the string and the list, along with representing text using the Unicode and ASCII standards, mapping characters to numbers, string formatting with the format method of the string class, and Python dictionary basics.
The course includes String Basics, List Basics, Representing Text, String Formatting, and Dictionary Basics.
The course addresses skills including Python (Programming Language), Data Encoding, Encodings, Data Definition Language, Data Manipulation Language, and Data Format Description Language.
Strings are sequences of characters that employ the Unicode standard, which expands the simpler ASCII standard, to represent nearly every alphabet in the world, and the course discusses mapping characters to numbers followed by example code.