cup = 'mug'
print(cup)
>>> 'mug'
cup = None
print(cup)
>>> None
mango, watermelon, grape = 'yellow', 'green&black', 'purple'
-
print(mango)
>>> yellow
-
print(watermelon, grape)
>>> green&black purple
변수의 값이 같은 변수를 여러개 선언하는것도 가능하다
strawberry = cherry = 'red'
print(strawberry, cherry)
>>> red red
del mango
print(mango)
-
Traceback (most recent call last):
File "<pyshell#54>", line 1, in <module>
print(mango)
NameError: name 'mango' is not defined
del을 변수명 앞에 붙이면 해당 변수는 삭제된다.
watermelon, grape = grape, watermelon
print(watermelon)
>>> purple
print(grape)
>>> green&black
watermelon과 grape의 값이 바뀐 것을 알 수 있다. 이 방법은 리스트에서도 가능하다
num_list = [1, 2, 3, 4, 5]
num_list[0], num_list[4] = num_list[4], num_list[0]
print(num_list)
>>> [5, 2, 3, 4, 1]