-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STEP 6. 심화 1 #7
Labels
STEP
단계
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
단계 설명
문제 / 코드보기
새로 알게된 점
문자열/list/dict 에서 특정 문자 포함되어 있는가?
if {value(dict:key)} in {str/list/dict}
문자열에서 특정 문자 index 위치 찾기 (문자가 없을 경우 -1 반환)
str.find(value)
숫자 소수점 자리수 지정하는 방법1:
round()
/math.ceil()
/math.floor()
/math.trunc()
round(number,자리수)
math.ceil(number)
math.floor(number)
math.trunc(number)
숫자 소수점 자리수 지정하는 방법2: f-string
숫자 소수점 자리수 지정하는 방법3: "{}".format()
"{index(생략가능):.표기할 자리수f}".foramt(실수)
숫자 소수점 자리수 지정하는 방법4: format()
format(실수, ".표기할 자리수f")
List 필터링하는 방법1: filter()
filter(function, iterable)
function
의 반환값은 boolean이여야 한다.List 필터링하는 방법2: List Comprehension
newList = [x for x in iterable if 조건]
The text was updated successfully, but these errors were encountered: