본문 바로가기

PythonTips2

Python 파이썬에서 줄 바꿈 (줄 계속)을 어떻게 할 수 있나요?, How can I do a line break (line continuation) in Python? 질문 주어진: e = 'a' + 'b' + 'c' + 'd' 위 코드를 두 줄로 작성하려면 어떻게 해야 할까요? e = 'a' + 'b' + 'c' + 'd' 답변 라인이란 무엇인가요? 다음 라인에서 인수를 문제없이 사용할 수 있습니다: a = dostuff(blahblah1, blahblah2, blahblah3, blahblah4, blahblah5, blahblah6, blahblah7) 그렇지 않으면 다음과 같이 할 수 있습니다: if (a == True and b == False): 또는 명시적 줄 바꿈으로: if a == True and \ b == False: 자세한 내용은 스타일 가이드를 확인하세요. 괄호를 사용하면 예제를 여러 줄로 작성할 수 있습니다: a = ('1' + '2' + '3.. 2023. 5. 24.
Python 파이썬의 리스트 메소드 append와 extend의 차이점은 무엇인가요?, What is the difference between Python's list methods append and extend? 질문 This question's answers are a community effort. Edit existing answers to improve this post. It is not currently accepting new answers or interactions. 리스트 메서드 append()와 extend()의 차이점은 무엇인가요? 답변 .append()은 리스트의 끝에 지정된 객체를 추가합니다: >>> x = [1, 2, 3] >>> x.append([4, 5]) >>> print(x) [1, 2, 3, [4, 5]] .extend()은 지정된 이터러블에서 요소를 추가하여 리스트를 확장합니다: >>> x = [1, 2, 3] >>> x.extend([4, 5]) >>> print(x) [1.. 2023. 5. 6.