์กฐ๊ฑด๋ฌธ์ ์ฌ์ฉํ๊ธฐ ์ํด์ , ๋น๊ต์ฐ์ฐ๊ณผ ๋ ผ๋ฆฌ์ฐ์ฐ์ ์์์ผ ํ๋ค.
a == b # a์ b๊ฐ ๊ฐ๋ค.
a != b # a์ b๊ฐ ๊ฐ์ง ์๋ค.
a > b # a๊ฐ b๋ณด๋ค ํฌ๋ค.
a < b # a๊ฐ b๋ณด๋ค ์๋ค.
a >= b # a๊ฐ b๋ณด๋ค ํฌ๊ฑฐ๋ ๊ฐ๋ค.
a <= b # a๊ฐ b๋ณด๋ค ์๊ฑฐ๋ ๊ฐ๋ค.
a and b # a์ b ๋๋ค ๋ง์กฑํด์ผ True.
a or b # a์ b ๋ ์ค ํ๋๋ง ๋ง์กฑํด๋ True.
not a # a๊ฐ ์๋๋ฉด True.
money = 3000
if money >= 300 :
print("%s ๋์์ต๋๋ค. ๊ฑฐ์ค๋ฆ๋์ %d์ ์
๋๋ค." %("coffee", money - 300))
else :
print("%d์ ๋ ํฌ์
ํ์ฌ ์ฃผ์ญ์์ค" %(300-money))
money = 3000
if money == 300 :
print("{} ๋์์ต๋๋ค." .format("coffee"))
elif money > 300 :
print("{} ๋์์ต๋๋ค. ๊ฑฐ์ค๋ฆ๋์ {}์ ์
๋๋ค." .format("coffee", money - 300))
else :
print("๋์ด ๋ถ์กฑํฉ๋๋ค. ํ์ธ ํ ๋ค์ ํฌ์
ํด์ฃผ์ธ์. ํฌ์
ํ์ {}์ ๋๋ ค๋๋ฆฌ๊ฒ ์ต๋๋ค." .format(money))
money = 20
if money == 300 :
print("Coffee ๋์์ต๋๋ค.")
else :
if money < 300:
print(f"๋์ด ๋ถ์กฑํฉ๋๋ค. {300-money}์ ๋ ํฌ์
ํด์ฃผ์ธ์.")
else :
print("Coffee ๋์์ต๋๋ค.")
print(f"๊ฑฐ์ค๋ฆ๋์ {money-300}์ ์
๋๋ค.")