Skip to content

Commit

Permalink
Update and rename 2.5 논리 자료형.md to 2-5 논리 자료형.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongYunLee authored Apr 2, 2022
1 parent 2ba9926 commit 7a2e194
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 2.5 논리 자료형
## 2-5 논리 자료형
해당 파트는 [본 영상](https://www.youtube.com/watch?v=lLmZS-l27aw&list=PLGPF8gvWLYypeEoFNTfSHdFL5WRLAfmmm&index=46) 시청 후 교안을 정독해주세요.

### 논리 자료형 개념
Expand Down Expand Up @@ -27,6 +27,7 @@ a < b
|1|1|
|2|2|
|3|4|

```python
for data1, data2 in zip(data['column1'], data['column2']):
a= data1==data2
Expand All @@ -40,7 +41,10 @@ for data1, data2 in zip(data['column1'], data['column2']):
> 반면 ==은 비교 연산자 입니다. 즉 `a ==b`라고 써준다면 'a와 b는 같은가?'라는 의미가 되고 동일 여부에 따라 True 혹은 False가 출력됩니다.
### 논리 연산자
해당 파트는 본 [영상1](https://www.youtube.com/watch?v=zzT6lYYQ3co&list=PLGPF8gvWLYypeEoFNTfSHdFL5WRLAfmmm&index=48), [영상2](https://www.youtube.com/watch?v=h3bXbjaEymg&list=PLGPF8gvWLYypeEoFNTfSHdFL5WRLAfmmm&index=49) 시청 후 교안을 정독해주세요.
해당 파트는 아래 영상을 시청 후 교안을 정독해주세요.

* [논리연산자](https://www.youtube.com/watch?v=zzT6lYYQ3co&list=PLGPF8gvWLYypeEoFNTfSHdFL5WRLAfmmm&index=48)
* [논리연산자를 사용하는 이유](https://www.youtube.com/watch?v=h3bXbjaEymg&list=PLGPF8gvWLYypeEoFNTfSHdFL5WRLAfmmm&index=49)

앞에서는 산술 연산자와 비교 연산자에 대해서 학습했습니다. 주어진 논리식을 판단하여 참(True)과 거짓(False)를 판단하는 논리 연산자의 종류는 다음과 같습니다.
|논리 연산자|설명|
Expand Down

0 comments on commit 7a2e194

Please sign in to comment.