파이썬에서 사용하는 변수란 특정 값을 저장하고 있는 공간이다.
변수는 '='기호의 왼쪽에 위치하고, 실제 값은 '='기호의 오른쪽에 나타낸다.
'='는 assignment를 가르킨다
변수가 지정되면 파이썬은 변수의 실제 값을 자동적으로 적용한다
예를 들어, 전 시간에는 print 구문에 실제 string 값을 적용해서 출력을 했지만 대신에 변수를 사용할 수 있다
source code
name = "퐝이뇽"
print(name)
# > "퐝이뇽"
그리고 변수의 값은 바뀔 수 있다.
source code
name = "퐝이뇽"
print(name)
# >> "퐝이뇽"
name = "인용퐝"
print(name)
# >> "인용퐝:
String은 문자열을 말한다
즉 일반적인 텍스트(text) 값을 의미한다.
문자열을 표시할때는 따옴표("")나 홀따옴표('')로 표시한다.
_
)으로만 구성올바른 변수 이름
_
name_
name잘못된 변수 이름
코드 창에 나와있는 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.""")