[python] 변수 할당하기

Jay·2020년 2월 8일
0
post-custom-banner
  1. 변수 선언
    python에서 변수를 사용하려면 변수 명 = 할당할 값 을 입력하면 된다.
    cup이라는 변수에 mug라는 값을 할당하는 방법이다.
cup = 'mug'
print(cup)
>>> 'mug'
  1. 빈 값 넣기
    변수에 빈 값을 할당할 수도 있다. None을 넣어주면 된다
cup = None
print(cup)
>>> None
  1. 여러개의 변수 선언하기
    한번에 여러개의 변수를 선언할 수도 있다.
mango, watermelon, grape = 'yellow', 'green&black', 'purple'
-
print(mango)
>>> yellow
-
print(watermelon, grape)
>>> green&black purple

변수의 값이 같은 변수를 여러개 선언하는것도 가능하다

strawberry = cherry = 'red'
print(strawberry, cherry)
>>> red red
  1. 변수 삭제
    변수를 삭제할 수도 있다. del을 이용하면 된다.
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을 변수명 앞에 붙이면 해당 변수는 삭제된다.

  1. 변수의 값 서로 바꾸기
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]
profile
You're not a computer, you're a tiny stone in a beautiful mosaic
post-custom-banner

0개의 댓글