Python format의 다양한 버전(생략)
더 자세히 원하시는 분들은 이쪽 봐주세요!
Python format의 여러 가지
그럼, 우리 빨리 보러 갑시다!
포맷 봐봐.
name = "かるでね"
print("私の名前は{}です。".format(name)) # 私の名前はかるでねです。
여러 변수 작업
name = "かるでね"
age = 21
like = "Python"
print("私の名前は{}です。年齢は{}歳です。{}が好きです。".format(name, age, like))
# 私の名前はかるでねです。年齢は21歳です。Pythonが好きです。
print("私の名前は" + name + "です。年齢は" + age + "歳です。" + like + "が好きです。")
# 私の名前はかるでねです。年齢は21歳です。Pythonが好きです。
번호 지정
name = "かるでね"
age = 21
like = "Python"
print("私の名前は{0}です。私の名前は{0}です。私の名前は{0}です。".format(name, age, like))
# 私の名前はかるでねです。私の名前はかるでねです。私の名前はかるでねです。
print("私の名前は{0}です。私の名前は{0}です。私の名前は{0}です。".format(name)) # ②
# 私の名前はかるでねです。私の名前はかるでねです。私の名前はかるでねです。
키워드 지정
name = "かるでね"
like = "Python"
print("私の名前は{name}です。{like}が好きです。".format(name=name, like=like))
# 私の名前はかるでねです。Pythonが好きです。
좀 더 간단하게 써주세요.
name = "かるでね"
like = "Python"
print(f"私の名前は{name}です。{like}が好きです。")
# 私の名前はかるでねです。Pythonが好きです。
응용 프로그램
소수점
import math
pi = math.pi
print("円周率: {pi:.2f}".format(pi=pi)) # 円周率: 3.14
print("円周率: {pi:.3f}".format(pi=pi)) # 円周率: 3.142
print("円周率: {pi:.5f}".format(pi=pi)) # 円周率: 3.14159
쉼표 구분자
prace1 = 10000000
prace2 = 100000000000000
print("prace1: {:,}".format(prace1)) # prace1: 10,000,000
print("prace2: {:,}".format(prace2)) # prace2: 100,000,000,000,000
%
이번에 우리는'fotmat'을 확인했다.
python이 무엇을 하든지 기계학습을 하든지'fotmat'을 사용할 테니 앞으로 적극적으로 사용하세요.
하지만 유용한 메시지를 보냈기 때문에 꼭!
그럼!
Reference
이 문제에 관하여(Python format의 다양한 버전(생략)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/heku/articles/ec91d2a7e84ebc텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)