python/w3schools

[w3schools] Assign Multiple Values - Python Variables

유호야 2021. 5. 25. 22:23
반응형

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 출력

 

반응형