Notice
Recent Posts
Recent Comments
Link
투케이2K
11. (python/파이썬) if elif else 제어문에 and, or, not 연산자 사용 실시 본문
/* =========================== */
[ 개발 환경 설정 ]
개발 툴 : pycharm
개발 언어 : python
/* =========================== */
/* =========================== */
[소스코드]
# [if elif else 제어문에 and, or, not 연산자 사용 실시]
# [요약 설명]
# 1. 파이썬에서 if 문에서 and, or, not 연산자를 사용할 수 있습니다
# 2. and : 모두 true 일 경우 true 입니다
# 3. or : 둘중 하나가 true 일 경우 true 입니다
# 4. not : true 일경우 false >> false 일경우 true 반환합니다
# [class start]
# [main start]
print("[main start]")
# 초기 변수 선언 실시
Boolean_One_value = True
Boolean_Two_value = False
# and, or, not 사용해 판단 실시
if Boolean_One_value and Boolean_Two_value:
print("결과 : ", "AND")
elif Boolean_One_value or Boolean_Two_value:
print("결과 : ", "OR")
elif not Boolean_One_value:
print("결과 : ", "NOT Boolean_One_value")
else:
print("결과 : ", "else")
# [main end]
# [class end]
/* =========================== */
/* =========================== */
[결과 출력]
/* =========================== */
/* =========================== */
[요약 설명]
# 1. 파이썬에서 if 문에서 and, or, not 연산자를 사용할 수 있습니다
# 2. and : 모두 true 일 경우 true 입니다
# 3. or : 둘중 하나가 true 일 경우 true 입니다
# 4. not : true 일경우 false >> false 일경우 true 반환합니다
/* =========================== */
반응형
'Python' 카테고리의 다른 글
13. (python/파이썬) for문 사용해서 순차적 배열 목록 출력 및 합계 구하기 (0) | 2021.07.11 |
---|---|
12. (python/파이썬) while true 무한루프 사용해서 카운트 실행 (0) | 2021.07.11 |
10. (python/파이썬) in, not in 사용해 특정 데이터 포함 여부 확인 실시 (0) | 2021.07.10 |
9. (python/파이썬) if elif else 제어문 사용해서 배수 판단 실시 (0) | 2021.07.10 |
8. (python/파이썬) 집합 set 사용해 배열에 저장된 중복 데이터 제거 수행 (0) | 2021.07.10 |
Comments