0
0

More than 3 years have passed since last update.

【Python】変数代入について

Last updated at Posted at 2021-09-18

複数の変数に1行のシンプルなコードでまとめて値を代入する際の書き方。

複数の値を代入する場合の書き方

a, b = 10, 20

print(a) #10
print(b) #20

同じ値を代入する場合の書き方

a = b = 100

print(a) #100
print(b) #100
0
0
1

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
0