From cbb2ef1197d2acc480abcf2535cd13bfd2c81deb Mon Sep 17 00:00:00 2001 From: Louie Dinh Date: Thu, 27 Jun 2013 10:57:49 -0700 Subject: Remove however in unpacking commenting. It's confusing --- python.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python.html.markdown') diff --git a/python.html.markdown b/python.html.markdown index 168f1ea1..32b7dc93 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -139,7 +139,7 @@ tup + (4, 5, 6) #=> (1, 2, 3, 4, 5, 6) tup[:2] #=> (1, 2) 2 in tup #=> True -# However, you can unpack tuples into variables +# You can unpack tuples into variables a, b, c = (1, 2, 3) # a is now 1, b is now 2 and c is now 3 # Tuples are created by default if you leave out the parentheses d, e, f = 4, 5, 6 -- cgit v1.2.3 From 199e03768259f0bea1493a9282b3f27b357b8467 Mon Sep 17 00:00:00 2001 From: Louie Dinh Date: Fri, 28 Jun 2013 16:32:26 -0700 Subject: Add contact info to python doc --- python.html.markdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python.html.markdown') diff --git a/python.html.markdown b/python.html.markdown index 42c498b1..b035b0f5 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -8,6 +8,8 @@ Python was created by Guido Van Rossum in the early 90's. It is now one of the m languages in existence. I fell in love with Python for it's syntactic clarity. It's basically executable pseudocode. +Feedback would be highly appreciated! You can reach me at [@louiedinh](http://twitter.com/louiedinh) or louiedinh [at] [google's email service] + Note: This article applies to Python 2.7 specifically, but should be applicable to Python 2.x. Look for another tour of Python 3 soon! -- cgit v1.2.3