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 1 year has passed since last update.

python初心者の自分のためのメモ

Last updated at Posted at 2021-03-12

プログラミングにおいて今のところよく使うワードは算術演算子だと気づいたので
ここにまとめてメモがわりにします。
x + y : 加算   (5 + 2 #7) x – y : 差算  (5 - 2 #3) x * y : 乗算  (5 * 2 #10) x / y : 除算  (5 / 2 #2.5) x % y : xをyで割った余り(剰余算)  (5 % 2 #1) x ** y : xのy乗  (5 ** 2 #25) x // y : 切り捨て除算  (5 // 2 #2)

またメモが必要になったら記事を書いていきます。
初学者のみなさん、一緒に勉強がんばりましょう。

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?