강의

멘토링

커뮤니티

Inflearn Community Q&A

rhkstld7984588's profile image
rhkstld7984588

asked

Python Bootcamp

String - Operations and format

소수점 출력 질문입니다.

Written on

·

275

0

안녕하세요?

강의 중에 소수점 자리 표현 출력은 format형만 가르쳐 주셨는데 f용법으로는 소수점 자리 표현이 가능한지 궁금합니다

 

 

 

python

Answer 1

0

jejucoding님의 프로필 이미지
jejucoding
Instructor

안녕하세요. 임종현님:)

f용법으로 소수점 자리 표현은 아래와 같이 쓰시면 됩니다.

print(f'{2.1:.3f}')

print(f'{2.1:.4f}')

print(f'{2.1:.5f}')

감사합니다:)

rhkstld7984588's profile image
rhkstld7984588

asked

Ask a question