1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python ウォーミングアップ

Last updated at Posted at 2018-11-09

「Pythonウォーミングアップ」は新しい記事を書いたので今後は こちら を使ってください。

Python ウォーミングアップ

まずはPythonで簡単な計算をしてみましょう。各自の画面中の IPython Notebook のセルに順次入力して(コピペ可)、「Shift + Enter」してください。

シャープ # を付けるとコメントと見なされ、それ以降の文字はPythonプログラムに無視されます。

# 簡単な足し算をする
1 + 2
# 数字を変数に代入する
a = 4
b = 5
# 代入した変数同士の掛け算
a * b
# 「リスト」というデータ構造に「data1」という名前をつけ、数字の組を代入する
data1 = [1, 2, 3, 4, 5]
# data1 の中身を確認する
print(data1)

ここから先のプログラムでは、インデント(文頭の空白文字)や、文末の「:」(コロン)などを正しく記述しないと、思った通りの動作をしなくなります。注意して使ってください。

# 「for文」を使って、リストの中身を1個1個取り出し、2倍して返す。
for n in data1:
    print(n * 2)
# 上と同じことをする関数を定義する
def double(list):
    for n in list:
        print(n * 2)
# 作った関数を呼び出して実行する。
double(data1)
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?