diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-03-24 12:48:13 -0600 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-03-24 12:48:13 -0600 |
commit | 012a4a8ae5ca338e8e20782c77e86daf25db03e1 (patch) | |
tree | 296193cf880f261b7a666f89508cb42dfba4bb83 /de-de/python-de.html.markdown | |
parent | 4aa2eb3d297098041b927e9041e5005758da706c (diff) | |
parent | 79170764a1b5069e648bb3764f95fbc3043e851b (diff) |
Merge pull request #964 from wincentbalin/master
Spelling and grammar fixes for German translation
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 |