情報リテラシ

担当教員:Defago, Xavier

情報リテラシ第二

データ

環境準備

  1. Create a google account (if you don’t have one already). もし無かったら,Googleの無料アカウントを申請する.
  2. Go to Google Colaboratory. Google Colaboratoryへ行く.
  3. (optional) Select the notebook “Welcome to Colaboratory” and read it. (オプション)
  4. Create a new notebook
  5. Rename the new notebook to InfoLite.ipynb
  6. Add a Text cell, and write the following in the cell
     # 情報リテラシ第二
    
     ## Introduction
    
     This notebook will contain _all_ of the exercises done
     for the course _Information Literacy_ in the __second__ quarter.
    

    文書はMarkdown形式で書けます.

  7. Add a second Text cell, and write the following inside
     ## First Manipulation
     The code below computes the following numbers $(i, i^2, 2^i, i^i)$
     for all integer $i$ from 0 to 9.
    
  8. Add a Code cell, and write the following in the cell
     for i in range(10):
         print(i, i**2, i**i)
    
  9. 左側の矢印ボタンを押すと,以下の
     0 0 1 1
     1 1 2 1
     2 4 4 4
     3 9 8 27
     4 16 16 256
     5 25 32 3125
     6 36 64 46656
     7 49 128 823543
     8 64 256 16777216
     9 81 512 387420489