파이썬(7)
-
slicing 이해하기
Understanding slicing How does Python's slice notation work? That is: when I write code like a[x:y:z], a[:], a[::2] etc., how can I understand which elements end up in the slice? Please include references where appropri... stackoverflow.com 문법은 다음과 같습니다. a[start:stop] # start 에서 stop-1까지의 요소들 a[start:] # start 에서 배열의 나머지까지 요소들 a[:stop] # 처음부터 stop - 1 까지 요소들 a[:] # 전체 배열의 복사본 step 값이라는 것이 있는 데, ..
2023.03.29 -
Python에서 문자열을 비교하는 방법: 동일성과 동등성
How to Compare Strings in Python: Equality and Identity | The Renegade Coder Once again, we're back with another Python topic. Today, we'll talk about how to compare strings in Python. Typically, I try to stay away from… therenegadecoder.com 다시 한 번 또 다른 Python 주제로 돌아왔습니다. 오늘은 Python에서 문자열을 비교하는 방법을 이야기 해보겠습니다. 일반적으로는 문자열의 복잡성 때문에(예: 다른 언어, 구현 등) 문자열(비교)을 멀리하려고 합니다. 그렇지만, 오늘은 이런 위험을 감수하기로 결정했습니다...
2022.11.28 -
Python 101: Equality(동일성) vs Identity(동등성)
Python 101: Equality vs Identity - Mouse Vs Python People who are new to the Python programming language can get a bit confused about the difference between "==" (equality) and Python's keyword "is" www.blog.pythonlibrary.org Python 프로그래밍 언어를 처음 접하는 사람들은 "=="(동일성)과 Python의 키워드 "is"(동등성)의 차이점에 대해 약간 혼란스러울 수 있습니다. 나는 심지어 그들의 코드에 논리적 오류를 도입할 정도로 미묘한 차이를 발견할 숙련된 프로그래머가 이 둘 사이를 헷갈려 하는 것을 보아왔습니다. 이 기사..
2022.11.23 -
Python에서 순홤문을 작성하는 방법: While 및 For
How to Write a Loop in Python: While and For | The Renegade Coder As this series grows, I often find myself revisiting the fundamentals. For instance, today we'll be learning how to write a loop in Python. Luckily… therenegadecoder.com 이 시리즈가 성장함에 따라 나는 종종 기본을 다시 생각하게 됩니다. 예를 들어, 오늘 우리는 파이썬에서 순환문을 작성하는 방법을 배울 것입니다. 다행히도 재귀에 대한 몇 가지 보너스 자료가 있습니다. 요컨대, 순환문을 작성하는 두 가지 핵심 방법, while 및 for가 있습니다. 전통적인..
2022.11.18 -
Python에서 코드를 주석 처리하는 방법: 인라인, 여러 줄 및 Docstring
How to Comment Code in Python: Inline, Multiline, and Docstring | The Renegade Coder As we kick off 2020, I wanted to start getting back to some of my favorite content: Python "how to" content. Today, we'll be looking… therenegadecoder.com 2020년을 시작하면서 제가 가장 좋아하는 콘텐츠인 Python “how to” 콘텐츠로 돌아가고 싶었습니다. 오늘은 우리 모두가 갖추어야 할 기술인 Python으로 코드를 주석 처리하는 방법을 살펴보겠습니다. 요약하자면, Python에서 주석을 작성하는 세 가지 주요 방법이 있습니..
2022.11.17 -
파이썬에서 하위 문자열 존재 여부-in, index 등
How to Check if a String Contains a Substring in Python: In, Index, and More | The Renegade Coder One concept that threw me for a loop when I first picked up Python was checking if a string contains a substring. After all, in… therenegadecoder.com 내가 Python을 처음 접했을 때 나를 사로잡았던 한 가지 개념은 문자열에 하위 문자열이 포함되어 있는지 확인하는 것이었습니다. 결국, 제 첫 언어인 Java에서는 indexOf() 또는 contains()와 같은 메서드를 호출하는 것이었습니다. 기쁘게도 파이썬은 자..
2022.11.15