Skip to content

Commit 4c12906

Browse files
committed
second commit
1 parent 6379f8f commit 4c12906

97 files changed

Lines changed: 4601 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

source/basic_data_types.rst

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
======================
2+
Fundamental Data Types
3+
======================
4+
5+
Numbers
6+
-------
7+
`bool`_
8+
9+
`int`_
10+
11+
`long`_
12+
13+
`float`_
14+
15+
`complex`_
16+
17+
Sequences
18+
---------
19+
`str`_
20+
21+
`unicode`_
22+
23+
`list`_
24+
25+
`tuple`_
26+
27+
Mappings
28+
--------
29+
`dict`_
30+
31+
`set`_
32+
33+
`frozenset`_
34+
35+
Files
36+
-----
37+
`file`_
38+
39+
40+
.. _bool: ../html/docs/bool/index.html
41+
.. _int: ../html/docs/ints/index.html
42+
.. _long: ../html/docs/ints/index.html
43+
.. _float: ../html/docs/float/index.html
44+
.. _complex: ../html/docs/complex/index.html
45+
.. _str: ../html/docs/str/index.html
46+

source/boilerplate.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Boilerplate
2+
===========
3+
4+
if __name__ == '__main__': main()
5+
----------------------------------
6+
7+
#! /usr/bin/env python
8+
----------------------
9+
10+
#! /usr/local/bin/python
11+
------------------------
12+
13+
#! /usr/bin/python
14+
------------------
15+
16+
# -*- coding: utf-8 -*-
17+
-----------------------

source/comprehensions.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Comprehensions and Generator Expressions
2+
=======================================
3+
4+
List Comprehension
5+
------------------
6+
7+
Dictionary Comprehension
8+
------------------------
9+
10+
Set Comprehension
11+
-----------------
12+
13+
Generator Expression
14+
---------------------

0 commit comments

Comments
 (0)