반응형
편지
1안) solution.py
def solution(message):
answer = 0
answer = len(message) * 2
return answer
2안) solution.py
def solution(message):
answer = 0
assert 1 <= len(message) <= 50, "out of scope"
answer = len(message) * 2
return answer
출처 - 프로그래머스(코딩테스트 연습) : https://school.programmers.co.kr/learn/courses/30/lessons/120898
demo_ref_keyword_assert2.py 편집
vim demo_ref_keyword_assert2.py
x = "hello"
#if condition returns False, AssertionError is raised:
assert x == "goodbye", "x should be 'hello'
참고URL
- python(w3schools.com) https://www.w3schools.com/python/ref_keyword_assert.asp
728x90
반응형
'스크립트' 카테고리의 다른 글
[코딩테스트 입문] 머쓱이보다 키 큰 사람 (0) | 2022.10.23 |
---|---|
[코딩테스트 입문] 분수의 덧셈 (0) | 2022.10.23 |
python 연산자(Python Operators) (0) | 2022.10.23 |
[코딩테스트 입문] 양꼬치 (0) | 2022.10.23 |
[코딩테스트 입문] 중복된 숫자 개수 (0) | 2022.10.22 |