반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- hive
- Redshift
- c#
- PANDAS
- math
- PostgreSQL
- GIT
- matplotlib
- Github
- array
- dataframe
- gas
- numpy
- Excel
- Mac
- Kotlin
- Python
- Google Spreadsheet
- Java
- Tkinter
- string
- list
- PySpark
- Apache
- django
- SQL
- google apps script
- Google Excel
- 파이썬
Archives
- Today
- Total
목록Logical Operator (1)
달나라 노트
Google Apps Script : 논리 연산자, Logical operator (&&, ||, !)
논리 연산자에 대해 알아봅시다. 논리 연산자라고 하면 and, or, not을 의미합니다. Operator Description Example A && B and A와 B 모두 true여야만 true return A와 B 중 하나라도 false라면 false return true && true -> true true && false -> false false && true -> false false && false -> false || or A와 B 중 하나라도 true라면 true return A와 B 모두 false여야만 false return true && true -> true true && false -> true false && true -> true false && false -> false..
Google Apps Script
2022. 11. 22. 20:42