0
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 3 years have passed since last update.

python 数値 備忘録

Last updated at Posted at 2021-04-01

pythonの数値 扱い方

個人用の備忘録として、数値の計算方法を記載しました。

#以下例
# 足し算
1 + 1 
# 引き算
2 - 1

# 掛け算
2 * 2

# 割り算
6 / 2

# 割り算 商
5 // 3

# 割り算 あまり
6 % 4

# べき乗
2 ** 4

参照元
python tutorial

0
1
2

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
0
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?