diff options
author | Arnie97 <arnie97@gmail.com> | 2015-04-11 13:09:50 +0800 |
---|---|---|
committer | Arnie97 <arnie97@gmail.com> | 2015-04-11 13:09:50 +0800 |
commit | c7f085ee34ebce89e523b10a56f9f6d5b1e4cd3a (patch) | |
tree | 7739ad481e099b59dd0393c61e898c51c35f9356 /de-de/python-de.html.markdown | |
parent | c38d8d93135561e8c0afbe20a5b16b39917ee06c (diff) | |
parent | f0540b93b16311ca39cf4f0ad5a9abf8dc13f223 (diff) |
Merge pull request #1 from adambard/master
Fetch updates from upstream
Diffstat (limited to 'de-de/python-de.html.markdown')
-rw-r--r-- | de-de/python-de.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/de-de/python-de.html.markdown b/de-de/python-de.html.markdown index 5ddb6f4b..ae29d6f9 100644 --- a/de-de/python-de.html.markdown +++ b/de-de/python-de.html.markdown @@ -149,7 +149,7 @@ li[0] #=> 1 # Das letzte Element ansehen li[-1] #=> 3 -# Bei Zugriffen außerhal der Liste kommt es jedoch zu einem IndexError +# Bei Zugriffen außerhalb der Liste kommt es jedoch zu einem IndexError li[4] # Raises an IndexError # Wir können uns Ranges mit Slice-Syntax ansehen @@ -188,7 +188,7 @@ tup[:2] #=> (1, 2) # Wir können Tupel (oder Listen) in Variablen entpacken a, b, c = (1, 2, 3) # a ist jetzt 1, b ist jetzt 2 und c ist jetzt 3 -# Tuple werden standardmäßig erstellt, wenn wir uns die Klammern sparen +# Tupel werden standardmäßig erstellt, wenn wir uns die Klammern sparen d, e, f = 4, 5, 6 # Es ist kinderleicht zwei Werte zu tauschen e, d = d, e # d is now 5 and e is now 4 |