반응형
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
- gas
- PostgreSQL
- dataframe
- string
- Kotlin
- hive
- numpy
- PySpark
- django
- GIT
- c#
- Java
- Apache
- Google Excel
- math
- google apps script
- PANDAS
- Github
- array
- 파이썬
- Redshift
- Google Spreadsheet
- Mac
- Tkinter
- Python
- SQL
- list
- Excel
- matplotlib
Archives
- Today
- Total
목록논리 연산자 (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