Python - Variables For Strings

황인용·2019년 12월 11일
0

Python

목록 보기
3/44

Variables(변수)

파이썬에서 사용하는 변수란 특정 값을 저장하고 있는 공간이다.

변수는 '='기호의 왼쪽에 위치하고, 실제 값은 '='기호의 오른쪽에 나타낸다.
'='는 assignment를 가르킨다

image.png

변수가 지정되면 파이썬은 변수의 실제 값을 자동적으로 적용한다

예를 들어, 전 시간에는 print 구문에 실제 string 값을 적용해서 출력을 했지만 대신에 변수를 사용할 수 있다

source code

name = "퐝이뇽"
print(name)
# > "퐝이뇽"

그리고 변수의 값은 바뀔 수 있다.

source code

name = "퐝이뇽"
print(name)
# >> "퐝이뇽"

name = "인용퐝"
print(name)
# >> "인용퐝:

String

String은 문자열을 말한다
즉 일반적인 텍스트(text) 값을 의미한다.
문자열을 표시할때는 따옴표("")나 홀따옴표('')로 표시한다.

변수 이름 법칙

  • 변수 이름은 영어 알파벳과 숫자 그리고 underscore(_)으로만 구성
  • 변수 이름 첫글자는 알파벳이나 unserscore로만 시작해야한다.(숫자로 시작못함)
  • 영어 알파벳은 대문자와 소문자가 구분된다(case sensitive)

올바른 변수 이름

  • name
  • _name
  • my_name
  • myName

잘못된 변수 이름

  • 7name
  • my name

Assignment

코드 창에 나와있는 printd 구문이 아래와 동일한 string이 출력도록 코드를 완성해주세요.
(Hint: print 문에 사용된 string 포맷은 Literal String Interpolation 포맷입니다. 더 자세한 정보는 https://realpython.com/python-f-strings/ 을 참조하세요.

Python was conceived in the late 1980s by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands as a successor to the ABC language (itself inspired by SETL), capable of exception handling and interfacing with the Amoeba operating system. Its implementation began in December 1989.

source code

print(f"""Python was conceived in the late {date}s 
by {python_inventor} at {location} (CWI) 
in the {country} as a successor to the ABC language (itself inspired by SETL), 
capable of exception handling and interfacing with the Amoeba operating system. 
Its implementation began in December 1989.""")
profile
dev_pang의 pang.log

0개의 댓글