๋
ผ๋ฆฌ์ฐ์ฐ์
๊ด๊ณ ์ฐ์ฐ์์ ํจ๊ป ์ฌ์ฉ๋๋ ์ฐ์ฐ์๋ก
2๊ฐ ์ด์์ ํญ์ ๋
ผ๋ฆฌ์ ์ผ๋ก ์ฐ๊ฒฐํ ๋ ์ฌ์ฉํ๋ค.
ex) and, or, not
a = 10
b = 0
print('{} > 0 and {} > 0 : {}'.format(a, b, a > 0 and b > 0)) #๋ ์กฐ๊ฑด์ ๋ชจ๋ ๋ง์กฑ์ํค์ง ์์ผ๋ฏ๋ก ๊ฑฐ์ง
print('{} > 0 or {} > 0 : {}'.format(a, b, a > 0 or b > 0)) #๋ ์กฐ๊ฑด ์ค ํ๋๋ฅผ ๋ง์กฑ์ํค๋ฏ๋ก ์ฐธ
print('not {} : {}'.format(a, not a)) #๊ฐ์ด ์์ผ๋๊น true์ธ๋ฐ not์ด ๋ถ์ด์ false
print('not {} : {}'.format(b, not b)) #0์ false๋๊น 0์ not์ true
'๐์น ๊ฐ๋ฐ(Web) > ๐ํ์ด์ฌ(Python)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
ํ์ด์ฌ While ๋ฐ๋ณต๋ฌธ (0) | 2023.01.27 |
---|---|
ํ์ด์ฌ if๋ฌธ (0) | 2023.01.27 |
ํ์ด์ฌ ๊ด๊ณ ์ฐ์ฐ์(comparison operator) (0) | 2023.01.25 |
ํ์ด์ฌ ๋์ ์ฐ์ฐ์(assignment operator) (0) | 2023.01.25 |
ํ์ด์ฌ ์ฐ์ฐ์ arithmetic (0) | 2023.01.25 |