Skip to content

Commit

Permalink
#12 指摘箇所を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Akira-Taniguchi committed May 21, 2016
1 parent a46f7a7 commit 8cb0a7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/1_intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -279,15 +279,15 @@ C言語のように波括弧(``{ }``)で囲む必要はなく、インデン

Pythonには標準でいくつか関数が提供されています。これを組み込み関数と呼びます。

たとえば、指定された整数のリストを作成する ``range()`` 関数は、 :numref:`range` のように使います
たとえば、指定された小数点を丸めた値を作成する ``round()`` 関数は、 このように使います

.. _range:

.. code-block:: python
:caption: 組み込み関数range
:caption: 組み込み関数round
>>> range(10)
range(0, 10)
>>> round(10.5)
10
組み込み関数の一覧は、次のドキュメントを参照してください。

Expand Down

0 comments on commit 8cb0a7f

Please sign in to comment.