diff --git a/index.html b/index.html new file mode 100644 index 0000000..81e491d --- /dev/null +++ b/index.html @@ -0,0 +1,252 @@ + + + + + + + + + + Learn You Some Python + + + + + + + + + + + + + + + + + + + + + + +
+

Learn You Some Python!Python for the Competent Programmer

+

Mike Harris

+

Geoffrey French

+
+ +
+

Syntax Stuff

+
+ +
+

Syntax Stuff

+ +
+ +
+

Syntax Stuff

+ +
+ + +
+

Lists & Dictionaries

+
+ +
+

Lists

+ +
+ +
+

Tuples

+ +
+

Lists have order, but tuples have structure.

+
+
+ +
+

Tuples Are Not Just Immutable Lists

+
+        [('Mike', 'Harris'),
+        ('Geoff', 'French')]
+    
+
+ +
+

Dictionaries

+
+ +
+

Iterators & Generators

+
+ +
+

Strings

+
+ +
+

Strings

+ +
+ +
+

For / Else

+
+ +
+

Duck Typing

+
+ +
+

Operator Overloading

+
+ +
+

Builtins

+
+ +
+

Some Handy Builtins

+ +
+ +
+

Context Managers

+
+ +
+

Context Managers

+

with open(foo) as f

+
+ +
+

Decorators

+
+ +
+

Multiple Inheritance

+
+ +
+

Multiple Inheritance

+ +
+ +
+

Libraries

+
+ +
+

Some Handy 3rd Party Libraries

+ +
+ +
+

The Cheese Shop

+
+ +
+

PyPi (Don't confuse with PyPy)

+

pip

+
+ +
+

USE PEP8!

+
+ +
+

Gotchas

+
+ +
+

Maths Gotchas

+ +
+ +# + + + + + + + + + + + + + + + + + +