반응형
One Value to Multiple Variables
And you can assign the same value to multiple variables in one line:
파이썬은 여러 변수를 선언하는 것이 가능하다.
var1, var2, var3 = 1, 2, "banana"
Note: Make sure the number of variables matches the number of values, or else you will get an error.
주의 : 변수의 개수와 입력하는 값의 개수는 같아야 한다. 그렇지 않으면 오류 발생!
아니면
3개의 변수에 하나의 값을 입력하는 것도 가능하다.
x = y = z = "Orange"
print(x)
print(y)
print(z)
Unpack a Collection
If you have a collection of values in a list, tuple etc. Python allows you extract the values into variables. This is called unpacking.
fruits = ["apple", "pear", "banana"];
x, y, z = fruits
print(x) #apple 출력
print(y) #pear 출력
print(z) #banana 출력
반응형
'python > w3schools' 카테고리의 다른 글
[w3schools] Global Variables - Python Variables (0) | 2021.05.31 |
---|---|
[w3schools] Output Variables - Python Variables (0) | 2021.05.25 |
[w3schools] Variable Names - Python Variables (0) | 2021.05.24 |
[w3schools] Python Variables - Python Variables (0) | 2021.05.20 |
[w3schools] Python Comments (0) | 2021.05.20 |