08. Python - String 연산
# 숫자와 비슷한 String + String
print("Hello, World") == print("Hello" + "World")
==
name = input()
print("Hello, " + name)
# 복잡한 String concatenation
literal string interpolation
name = input()
print(f"Hello, {name}")
문법 사용 정의
1. print(f"") : 파이썬은 f 다음에 오는 string 값을 literal string interpolation으로 인지하며,
string 안에 있는 변수들을 실제 값으로 치환.
- 치환할 변수(or 함수호출 ...) 중괄호() 사용.
[ TIL 05. Python - Literal String Interpolation ]
# Significant Whitespace (들여쓰기)
Python은 TAB(space 4)사이즈를 기준으로 모든구분에 사용
Author And Source
이 문제에 관하여(08. Python - String 연산), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ss3152psy/TIL-08.-Python-String-연산저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)