Skip to content

Instantly share code, notes, and snippets.

@Plasma0909
Created October 10, 2022 08:44
Show Gist options
  • Save Plasma0909/b7f067ba194a3626904dd69d03d28f9a to your computer and use it in GitHub Desktop.
Save Plasma0909/b7f067ba194a3626904dd69d03d28f9a to your computer and use it in GitHub Desktop.
assignment_operator ( 代入演算子 )
演算子意味
=左辺に右辺を代入
+=左辺 = 左辺 + 右辺
-=左辺 = 左辺 - 右辺
*=左辺 = 左辺 * 右辺
**=左辺 = 左辺 ** 右辺
/=左辺 = 左辺 / 右辺
//=左辺 = 左辺 // 右辺
%=左辺 = 左辺 % 右辺
|=左辺 = 左辺 | 右辺
^=左辺 = 左辺 ^ 右辺
<<=左辺 = 左辺 << 右辺
>>=左辺 = 左辺 >> 右辺
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment