担当教員:Defago, Xavier
InfoLite.ipynb
# 情報リテラシ第二
## Introduction
This notebook will contain _all_ of the exercises done
for the course _Information Literacy_ in the __second__ quarter.
文書はMarkdown形式で書けます.
## First Manipulation
The code below computes the following numbers $(i, i^2, 2^i, i^i)$
for all integer $i$ from 0 to 9.
for i in range(10):
print(i, i**2, i**i)
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