Introduction
You have programmed low-level languages like C, C++ or other similar programming languages? Therefore, you might think you know already enough about data types and variables? You know a lot that's right, but not enough for Python. So it's worth to go on reading this chapter on data types and variables in Python. There is a dodgy differences in the way Python and C deal with variables. There are integers, floating point numbers, strings, and many more, but things are not the same as in C or C++.
If you want to use lists or associative arrays in C e.g., you will have to construe the data type list or associative arrays from scratch, i.e., design memory structure and the allocation management. You will have to implement the necessary search and access methods as well. Python provides power data types like lists and associative arrays, called dict in Python, as a genuine part of the language.
So, this chapter is worth reading both for beginners and for advanced programmers in other programming languages.
Variables
General Concept of Variables
This subchapter is especially intended for C, C++ and Java programmers, because the way these programming languages treat basic data types is different from the way Python does it. Those who start learning Python as their first programming language may skip to the next subchapter.
So, what's a variable? As the name implies, a variable is something which can change. A variable is a way of referring to a memory location used by a computer program. In many programming languages a variable is a symbolic name for this physical location. This memory location contains values, like numbers, text or more complicated types. We can use this variable to tell the computer to save some data in this location or to retrieve some data from this location.
A variable can be seen as a container (or some say a pigeonhole) to store certain values. While the program is running, variables are accessed and sometimes changed, i.e., a new value will be assigned to a variable.
What we have said so far about variables best fits the way variables are implemented in C, C++ or Java. Variable names have to be declared in these languages before they can be used.
int x;
int y;
Such declarations make sure that the program reserves memory for two variables with the names x and y. The variable names stand for the memory location. It's like the two empty shoeboxes, which you can see in the picture on the right side. These shoeboxes are labelled with x and y. Like the two shoeboxes, the memory is empty as well.
Putting values into the variables can be realized with assignments. The way you assign values to variables is nearly the same in all programming languages. In most cases the equal "=" sign is used. The value on the right side will be saved in the variable name on the left side.
We will assign the value 42 to both variables and we can see that two numbers are physically saved in the memory, which correspond to the two shoeboxes in the following picture.
x = 42;
y = 42;
We think that it is easy to understand what happens, if we assign a new value to one of the variables, let's say the value 78 to y.
y = 78;
We have exchanged the content of the memory location of y.
We have seen now that in languages like C, C++ or Java every variable has and must have a unique data type. E.g., if a variable is of type integer, solely integers can be saved in the variable for the duration of the program. In those programming languages every variable has to be declared before it can be used. Declaring a variable means binding it to a data type.
Variables in Python
It's a lot easier in Python. There is no declaration of variables required in Python. It's not even possible. If there is need of a variable, you think of a name and start using it as a variable.
Another remarkable aspect of Python: Not only the value of a variable may change during program execution but the type as well. You can assign an integer value to a variable, use it as an integer for a while and then assign a string to the same variable.
In the following line of code, we assign the value 42 to a variable:
i = 42
The equal "=" sign in the assignment shouldn't be seen as "is equal to". It should be "read" or interpreted as "is set to", meaning in our example "the variable i is set to 42". Now we will increase the value of this variable by 1:
>>> i = i + 1>>> print(i)>>>43
As we have said above, the type of a variable can change during the execution of a script. Or to be precise: A new object, which can be of any type, will be assigned to it. We illustrate this in our following example:
i = 42 # data type is implicitly set to integeri = 42 + 0.11 # data type is changed to floati = "forty" # and now it will be a string
When Python executes an assignment like "i = 42", it evaluates the right side of the assignment and recognizes that it corresponds to the integer number 42. It creates an object of the integer class to save this data. If you want to have a better understanding of objects and classes, you can but you don't have to start with our chapter on Object-Oriented Programming.
This means that Python automatically takes care of the physical representation for the different data types.
Object References
We want to take a closer look on variables now. Python variables are references to objects, but the actual data is contained in the objects:
As variables are pointing to objects and objects can be of arbitrary data type, variables cannot have types associated with them. This is a huge difference to C, C++ or Java, where a variable is associated with a fixed data type. This association can't be changed as long as the program is running.
Therefore it is possible to write code like the following in Python:
>>> x = 42>>> print(x)42>>> x = "Now x references a string">>> print(x)Now x references a string
We want to demonstrate something else now. Let's look at the following code:
>>> x = 42>>> y = x
We created an integer object 42 and assigned it to the variable x. After this we assigned x to the variable y. This means that both variables reference the same object. The following picture illustrates this:
What will happen when we execute
y = 78
after the previous code?
Python will create a new integer object with the content 78 and then the variable y will reference this newly created object, as we can see in the following picture:
Most probably, we will see further changes to the variables in the flow of our program. There might be, for example, a string assignment to the variable x. The previously integer object "42" will be orphaned after this assignment. It will be removed by Python, because no other variable is referencing it.
id Function
You may ask yourself, how can we see or prove that x and y really reference the same object after the assignment
y = x
of our previous example?
The identity function id() can be used for this purpose. Every instance (object or variable) has an identity, i.e., an integer which is unique within the script or program, i.e., other objects have different identities.
So, let's have a look at our previous example and how the identities will change:
>>> x = 42>>> id(x)>>> y = x10107136(10107136, 10107136)>>> id(x), id(y)>>> id(x), id(y)>>> y = 78>>>(10107136, 10108288)
Valid Variable Names
The naming of variables follows the more general concept of an identifier. A Python identifier is a name used to identify a variable, function, class, module or other object.
A variable name and an identifier can consist of the uppercase letters "A" through "Z", the lowercase letters "a" through "z" , the underscore _ and, except for the first character, the digits 0 through 9. Python 3.x is based on Unicode. This means that variable names and identifier names can additionally contain Unicode characters as well.
Identifiers are unlimited in length. Case is significant. The fact that identifier names are case-sensitive can cause problems to some Windows users, where file names are case-insensitive, for example.
Exceptions from the rules above are the special Python keywords, as they are described in the following paragraph.
The following variable definitions are all valid:
>>> height = 10>>> maximum_height = 100>>> >>> υψος = 10>>>>>> μεγιστη_υψος = 100>>> MinimumHeight = 1
Python Keywords
No identifier can have the same name as one of the Python keywords, although they are obeying the above naming conventions:
and, as, assert, break, class, continue, def, del, elif, else,except, False, finally, for, from, global, if, import, in, is,lambda, None, nonlocal, not, or, pass, raise, return, True, try,while, with, yield
There is no need to learn them by heart. You can get the list of Python keywords in the interactive shell by using help. You type
help()
in the interactive, but please don't forget the parenthesis: >>> help()Welcome to Python 3.4's help utility!If this is your first time using Python, you should definitely check outthe tutorial on the Internet at http://docs.python.org/3.4/tutorial/.Python programs and using Python modules. To quit this help utility andEnter the name of any module, keyword, or topic to get help on writing return to the interpreter, just type "quit".with a one-line summary of what it does; to list the modules whose nameTo get a list of available modules, keywords, symbols, or topics, type "modules", "keywords", "symbols", or "topics". Each module also comeshelp>or summary contain a given string such as "spam", type "modules spam".
What you see now is the help prompt, which allows you to query help on lots of things, especially on "keywords" as well:
help> keywordsHere is a list of the Python keywords. Enter any keyword to get more help.False def if raiseTrue elif in tryNone del import return and else is whilebreak for notas except lambda with assert finally nonlocal yield class from orhelp>continue global pass
Naming Conventions
We saw in our chapter on "Valid Variable Names" that we sometimes need names which consist of more than one word. We used, for example, the name "maximum_height". The underscore functioned as a word separator, because blanks are not allowed in variable names. Some people prefer to write Variable names in the so-called CamelCase notation. We defined the variable MinimumHeight in this naming style.
There is a permanent "war" going on between the camel case followers and the underscore lovers. Personally, I definitely prefer "the_natural_way_of_naming_things" to "TheNaturalWayOfNamingThings". I think that the first one is more readable and looks more natural language like. In other words: CamelCase words are harder to read than their underscore counterparts, EspeciallyIfTheyAreVeryLong. This is my personal opinion shared by many other programmers but definitely not everybody. The Style Guide for Python Code recommends underscore notation for variable names as well as function names.
Certain names should be avoided for variable names: Never use the characters 'l' (lowercase letter "L"), 'O' ("O" like in "Ontario"), or 'I' (like in "Indiana") as single character variable names. They should be avoided, because these characters are indistinguishable from the numerals one and zero in some fonts. When tempted to use 'l', use 'L' instead, if you cannot think of a better name anyway. The Style Guide has to say the following about the naming of identifiers in standard modules:
"All identifiers in the Python standard library MUST use ASCII-only identifiers, and SHOULD use English words wherever feasible (in many cases, abbreviations and technical terms are used which aren't English). In addition, string literals and comments must also be in ASCII. The only exceptions are (a) test cases testing the non-ASCII features, and (b) names of authors. Authors whose names are not based on the latin alphabet MUST provide a latin transliteration of their names."
Companies, institutes, organizations or open source projects aiming at an international audience should adopt a similar notation convention!
Changing Data Types and Storage Locations
Programming means data processing. Data in a Python program is represented by objects. These objects can be
- built-in, i.e., objects provided by Python, or
- objects from extension libraries or
- created in the application by the programmer.
So we have different "kinds" of objects for different data types. We will have a look at the different built-in data types in Python.
Numbers
Python's built-in core data types are in some cases also called object types. There are four built-in data types for numbers:
- Integer
- Normal integerse.g., 4321
- Octal literals (base 8)A number prefixed by 0o (zero and a lowercase "o" or uppercase "O") will be interpreted as an octal numberexample:>>> a = 0o10>>> print(a)8
- Hexadecimal literals (base 16)Hexadecimal literals have to be prefixed either by "0x" or "0X".example:>>> hex_number = 0xA0F>>> print(hex_number)2575
- Binary literals (base 2)Binary literals can easily be written as well. They have to be prefixed by a leading "0", followed by a "b" or "B":>>> x = 0b101010>>> x 42 >>>
The functions hex, bin, oct can be used to convert an integer number into the corresponding string representation of the integer number:>>> x = hex(19)>>> x '0x13'<class 'str'>>>> type(x)'0b1000001'>>> x = bin(65) >>> x'0o101'>>> x = oct(65) >>> x>>>>>> oct(0b101101)'0o55'Integers in Python3 can be of unlimited size>>> x = 787366098712738903245678234782358292837498729182728>>> print(x)>>> x * x * x787366098712738903245678234782358292837498729182728488123970070638215986770162105731315538827586091948617997871122950228891123960901918308618286311523282239313708275589787123005317148968569797875581092352>>> - Long integersPython 2 has two integer types: int and long. There is no "long int" in Python3 anymore. There is only one "int" type, which contains both "int" and "long" from Python2. This means that the following code fails in Python 3:>>> 1LFile "<stdin>", line 11L ^SyntaxError: invalid syntax>>> x = 43 >>> long(x)File "<h;stdin>", line 1, in <module>Traceback (most recent call last):>>>NameError: name 'long' is not defined
- Floating-point numbersfor example: 42.11, 3.1415e-10
- Complex numbersComplex numbers are written as
<real part> + <imaginary part>j
examples:>>> x = 3 + 4j>>> y = 2 - 3j>>> z = x + y>>> print(z)(5+1j)
Integer Division
There are two kinds of division operators:
- "true division" performed by "/"
- "floor division" performed by "//"
True Division
True division uses the slash (/) character as the operator sign. Most probably it is what you expect "division" to be. The following examples are hopefully self-explaining:
bernd@marvin ~/dropbox/websites/python-course.eu $ python3Python 3.5.2 (default, Nov 17 2016, 17:05:23)Type "help", "copyright", "credits" or "license" for more information.[GCC 5.4.0 20160609] on linux >>> 10 / 3 3.3333333333333335 >>> 10.0 / 3.0>>>3.3333333333333335 >>> 10.5 / 3.53.0
Floor Division
The operator "//" performs floor division, i.e., the dividend is divided by the divisor - like in true division - but the floor of the result will be returned. The floor is the largest integer number smaller than the result of the true division. This number will be turned into a float, if either the dividend or the divisor or both are float values. If both are integers, the result will be an integer as well. In other words, "//" always truncates towards negative infinity.
Connection to the floor function: In mathematics and computer science, the floor function is the function that takes as input a real number x and returns the greatest integer floor ( x ) = ⌊ x ⌋ that is less than or equal to x.
If you are confused now by this rather mathematical and theoretical definition, the following examples will hopefully clarifiy the matter:
bernd@marvin $ python3Python 3.5.2 (default, Nov 17 2016, 17:05:23)[GCC 5.4.0 20160609] on linuxType "help", "copyright", "credits" or "license" for more information.>>> 9 // 3 3 >>> 10 // 3 3 >>> 11 // 3 3 >>> 12 // 3 4 >>> 10.0 // 3 3.0 >>> -7 // 3 -3>>>>>> -7.0 // 3-3.0
Strings
The task of the first-generation computers in the forties and fifties had been - due to technical restraints - focused on number processing. Text processing had been just a dream that time. Nowadays, one of the main tasks of computers is text processing in all its varieties; the most prominent applications are search engines like Google. To enable text processing programming languages need suitable data types. Strings are used in all modern programming languages to store and process textual information. Logically, a string - like any text - is a sequence of characters. The question remains what a character consists of. In a book, or in a text like the one your are reading now, characters consist of graphical shapes, so-called graphemes, consisting of lines, curves and crossings in certain angles or positions and so on. The ancient Greeks associated with the word the engraving on coins or the stamps on seals.
In computer science or computer technology, a character is a unit of information. These Characters correspond to graphemes, the fundamental units of written or printed language. Before Unicode came into usage, there was a one to one relationship between bytes and characters, i.e., every character - of a national variant, i.e. not all the characters of the world - was represented by a single byte. Such a character byte represents the logical concept of this character and the class of graphemes of this character. In the image on the right side, we have depicted various representations of the letter "A", i.e., "A" in different fonts. So in printing there are various graphical representations or different "encodings" of the abstract concept of the letter A. (By the way, the letter "A" can be ascribed to an Egyptian hieroglyph with a pictogram of an ox.) All of these graphical representations have certain features in common. In other words, the meaning of a character or a written or printed text doesn't depend on the font or writing style used. On a computer the capital A is encoded in binary form. If we use ASCII it is encoded - like all the other characters - as the byte 65.
ASCII is restricted to 128 characters and "Extended ASCII" is is still limited to 256 bytes or characters. This is good enough for languages like English, German and French, but by far not sufficient for Chinese, Japanese and Korean. That's where Unicode gets into the game. Unicode is a standard designed to represent every character from every language, i.e., it can handle any text of the world's writing systems. These writing systems can also be used simultaneously, i.e., Roman alphabet mixed with Cyrillic or even Chinese characters.
It is a different story in Unicode. A character maps to a code point. A code point is a theoretical concept. This means, for example, that the character "A" is assigned a code point U+0041. The "U+" means "Unicode" and the "0041" is a hexadecimal number, 65 in decimal notation.
You can transform it like this in Python by the way:
>>> hex(65)'0x41'>>> int(0x41)65
Up to four bytes are possible per character in Unicode. Theoretically, this means a huge number of 4294967296 possible characters. Due to restrictions from UTF-16 encoding, there are "only" 1,112,064 characters possible. Unicode version 8.0 has assigned 120,737 characters. This means that there are slightly more than 10 % of all possible characters assigned, or in other words: We can still add nearly a million characters to Unicode.
| |
---|---|
Name | Description |
UTF-32 | It's a one to one encoding, i.e., it takes each Unicode character (a 4-byte number) and stores it in 4 bytes. One advantage of this encoding is that you can find the Nth character of a string in linear time, because the Nth character starts at the 4×Nth byte. A serious disadvantage of this approach is due to the fact that it needs four bytes for every character. |
UTF-16 | Hardly anybody needs more than 65535 characters, so UTF-16, which needs 2 bytes, is a more space efficient alternative to UTF-32. But it is very difficult to access characters outside the range 0 - 65535, i.e. characters from the so-called "astral plane" Another problem of both UTF-32 and UTF-16 consists in the byte ordering, which is dependent on the operating system. |
UTF-8 | UTF8 is a variable-length encoding system for Unicode, i.e., different characters take up a different number of bytes. ASCII characters use solely one byte per character, which are the same as the used to be for the first 128 characters (0127), i.e., these characters in UTF-8 are indistinguishable from ASCII. But the so-called "Extended Latin" characters like the Umlaute ä, ö and so on take up two bytes. Chinese characters need three bytes. Finally, the very seldom used characters of the "astral plane" need four bytes to be encoded in UTF-8. A disadvantage of this approach is that finding the Nth character is more complex, the longer the string, the longer it takes to find a specific character. |
String, Unicode and Python
After this lengthy but necessary introduction, we finally come to python and the way it deals with strings. All strings in Python 3 are sequences of "pure" Unicode characters, no specific encoding like UTF-8.
There are different ways to define strings in Python:
>>> s = 'I am a string enclosed in single quotes.'>>> s2 = "I am another string, but I am enclosed in double quotes"
Both s and s2 of the previous example are variables referencing string objects. We can see that string literals can either be enclosed in matching single (') or in double quotes ("). Single quotes will have to be escaped with a backslash (\), if the string is defined with single quotes:
>>> s3 = 'It doesn\'t matter!'
This is not necessary, if the string is represented by double quotes:
>>> s3 = "It doesn't matter!"
Analogously, we will have to escape a double quote inside a double quoted string:
>>> txt = "He said: \"It doesn't matter, if you enclose a string in single or double quotes!\"">>> print(txt)>>>He said: "It doesn't matter, if you enclose a string in single or double quotes!"
They can also be enclosed in matching groups of three single or double quotes. In this case they are called triple-quoted strings. The backslash (\) character is used to escape characters that otherwise have a special meaning, such as newline, backslash itself, or the quote character.
txt = '''A string in triple quotes can extendover multiple lines like this one, and can contain'single' and "double" quotes.'''
In triple-quoted strings, unescaped newlines and quotes are allowed (and are retained), except that three unescaped quotes in a row terminate the string. (A "quote" is the character used to open the string, i.e., either ' or ".)
A string in Python consists of a series or sequence of characters - letters, numbers, and special characters. Strings can be subscripted or indexed. Similar to C, the first character of a string has the index 0.
>>> s = "Hello World">>> s[0] 'H' >>> s[5]>>>' '
The last character of a string can be accessed like this:
>>> s[len(s)-1]'d'
Yet, there is an easier way in Python. The last character can be accessed with -1, the second to last with -2 and so on:
>>> s[-1]'d''l'>>> s[-2]>>>
Some readers might find it confusing when we use "to subscript" as a synonym for "to index". Usually, a subscript is a number, figure, symbol, or indicator that is smaller than the normal line of type and is set slightly below or above it. When we wrote s[0] or s[3] in the previous examples, this can be seen as an alternative way for the notation s0 or s3. So, both s3 and s[3] describe or denote the 4th character. Btw. there exists no character type in Python. A character is simply a string of size one.
It's possible to start counting the indices from the right, as we have mentioned previously. In this case negative numbers are used, starting with -1 for the most right character.
Some operators and functions for strings
- ConcatenationStrings can be glued together (concatenated) with the + operator:"Hello" + "World" will result in "HelloWorld"
- RepetitionString can be repeated or repeatedly concatenated with the asterisk operator "*":"*-*" * 3 will result in "*-**-**-*"
- Indexing"Python"[0] will result in "P"
- SlicingSubstrings can be created with the slice or slicing notation, i.e., two indices in square brackets separated by a colon:"Python"[2:4] will result in "th"
- Sizelen("Python") will result in 6
Immutable Strings
Like strings in Java and unlike C or C++, Python strings cannot be changed. Trying to change an indexed position will raise an error:
>>> s = "Some things are immutable!">>> s[-1] = "."File "<stdin>", line 1, in <module>Traceback (most recent call last):TypeError: 'str' object does not support item assignment>>>
Beginners in Python are often confused, when they see the following codelines:
>>> txt = "He lives in Berlin!">>> txt = "He lives in Hamburg!"
The variable "txt" is a reference to a string object. We define a completely new string object in the second assignment. So, you shouldn't confuse the variable name with the referenced object!
A String Peculiarity
Strings show a special effect, which we will illustrate in the following example. We will need the "is"-Operator. If both a and b are strings, "a is b" checks if they have the same identity, i.e., share the same memory location. If "a is b" is True, then it trivially follows that "a == b" has to be True as well.
Yet, "a == b" True doesn't imply that "a is b" is True as well!
Let's have a look at how strings are stored in Python:
>>> a = "Linux">>> b = "Linux"True>>> a is b
Okay, but what happens, if the strings are longer? We use the longest village name in the world in the following example. It's a small village with about 3000 inhabitants in the South of the island of Anglesey in the North-West of Wales:
>>> a = "Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch">>> b = "Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch"True>>> a is b
Nothing has changed to our first "Linux" example. But what works for Wales doesn't work e.g., for Baden-Württemberg in Germany:
>>> a = "Baden-Württemberg">>> b = "Baden-Württemberg"True>>> a is b False>>> a == b
You are right, it has nothing to do with geographical places. The special character, i.e., the hyphen, is to "blame".
>>> a = "Baden!">>> b = "Baden!">>> a = "Baden1">>> a is b FalseTrue>>> b = "Baden1">>> a is b
Escape Sequences in Strings
To end our coverage of string in this chapter, we will introduce some escape characters and sequences. The backslash (\) character is used to escape characters, i.e., to "escape" the special meaning, which this character would otherwise have. Examples for such characters are newline, backslash itself, or the quote character. String literals may optionally be prefixed with a letter 'r' or 'R'; these strings are called raw strings. Raw strings use different rules for interpreting backslash escape sequences.
Escape Sequence | Meaning Notes |
---|---|
\newline | Ignored |
\\ | Backslash (\) |
\' | Single quote (') |
\" | Double quote (") |
\a | ASCII Bell (BEL) |
\b | ASCII Backspace (BS) |
\f | ASCII Formfeed (FF) |
\n | ASCII Linefeed (LF) |
\N{name} | Character named name in the Unicode database (Unicode only) |
\r | ASCII Carriage Return (CR) |
\t | ASCII Horizontal Tab (TAB) |
\uxxxx | Character with 16-bit hex value xxxx (Unicode only) |
\Uxxxxxxxx | Character with 32-bit hex value xxxxxxxx (Unicode only) |
\v | ASCII Vertical Tab (VT) |
\ooo | Character with octal value ooo |
\xhh | Character with hex value hh |
Byte Strings
Python 3.0 uses the concepts of text and (binary) data instead of Unicode strings and 8-bit strings. Every string or text in Python 3 is Unicode, but encoded Unicode is represented as binary data. The type used to hold text is str, the type used to hold data is bytes. It's not possible to mix text and data in Python 3; it will raise TypeError.
While a string object holds a sequence of characters (in Unicode), a bytes object holds a sequence of bytes, out of the range 0 .. 255, representing the ASCII values.
Defining bytes objects and casting them into strings:
>>> x = b"Hallo">>> t = str(x)>>> u = t.encode("UTF-8")
No comments:
Post a Comment