목록전체 글 (287)
프론트엔드 정복하기
format 함수 사용 방법 중괄호 안에 를 할당하고 --> format 함수의 '인자'들로 값을 넣는다. " { index-0 }, { index-1 } " . format ( 인자1, 인자2 ) 다음은 구구단의 예다. a = 2 b = 3 s = "구구단 {0} x {1} = {2}" .format(a, b, a*b) print (s) // 구구단 2 x 3 = 6 * 에 index를 입력하면 --> format 인자 값 중 에 해당하는 값이 출력 # 인덱스를 입력하지 않으면? s4 = 'name : {}, city : {}'.format('BlockDMask', 'seoul') print(s4) // 순서대로 출력 --> name : BlockDMask, city : seoul # 인덱스 순서가 바..
1. round 함수 - 반올림 2. format 서식 지정 3. f-string 서식 지정 1. round 함수 round(반올림하고자하는 값, 자릿수) a = round(1.23456) b = round(1.23456, 0) c = round(1.23456, 1) print(f"round(1.23456) : {a}") print(f"round(1.23456, 0) : {b}") print(f"round(1.23456, 1) : {c}") // round(1.23456 : 1) // round(1.23456 : 1.0) // round(1.23456 : 1.2) 2. format 함수 a = "format example1 : {:.2f}".format(1.23456789) print(a) // form..
화면에 "Hello World" 출력 - 주요 key : print print ("Hello World") 화면에 "Mary's cosmetics" 출력 - 주요 key : \특수문자 print ("Mary\'s cosmetics") 화면에 소수점 아래 ㅇ자리 까지 출력 - 주요 key : % 서식지정자 - 추가 자료 : 파이썬 소수점 자리수 제한 방법 3가지 digit = 3.141592 pring ("%.4f" % digit) 참고 사이트 https://www.fun-coding.org/python-question1-answer.html
// a : 상단부에 셀 만들기 // b : 하단부에 셀 만들기 // shift + enter : 실행
https://rinae.dev/posts/helper-types-in-typescript