Skip to content

Commit

Permalink
リハーサル前日に練習しておかしいところを発見したので、修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
Akira-Taniguchi committed May 26, 2016
1 parent e9f688b commit d71fe0c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
7 changes: 6 additions & 1 deletion source/0_about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,9 @@
Python bootcamp について
==========================

(ここに Python bootcamp の説明とかを書いてください)
1. 遠方に住んでいるためPyCon JPのチュートリアルに参加できずにいた方
2. Pythonを使っている人が周りにいなくてなかなか始められなかった方

上記のような人たちにPythonを知ってもらえる機会を提供できたらという思いで、Python Boot Campを企画しました。

https://www.pycon.jp/support/bootcamp.html
6 changes: 3 additions & 3 deletions source/4_collections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,9 @@ in
すべてのキー、値の要素をリストで取得するには、 ``.keys()````.values()````.items()`` メソッドを使います。
* ``.keys()``すべてのキーをリストで取得
* ``.values()``すべての値をリストで取得
* ``.items()`` :すべてのキーと値を、要素が2つのタプルのリストで取得
* ``.keys()``すべてのキーを取得
* ``.values()``すべての値を取得
* ``.items()`` :すべてのキーと値を、要素が2つのタプルで取得
たとえば、辞書内のすべてのキーと値を取得するには、 :numref:`get-all-items` のようにします。
Expand Down
1 change: 0 additions & 1 deletion source/5_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Pythonインタープリタを起動して、 ``calc.py`` をインポートし
:caption: calcのインポート
>>> import calc
>>> calc
``calc`` というモジュールがインポートされました。

Expand Down

0 comments on commit d71fe0c

Please sign in to comment.