1. ๋ค์๊ณผ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ฑํ์ ๋, ์คํ ๊ฒฐ๊ณผ๋ฅผ ์์ฑํ์์ค. print(10 == 10 and 10 != 5) print(10 > 5 or 10 5) print(1 != 1.0) -> True True False False 2. ๋ค์๊ณผ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ฑํ์ ๋, ์คํ ๊ฒฐ๊ณผ๋ก ์๋ง์ ๊ฒ์? if 4 == "4": print(True) else: print(False) 1) True 2) False 3) ์๋ฌ๋ฐ์ -> 2) 3. ๋ค์๊ณผ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ฑํ์ ๋, ์คํ ๊ฒฐ๊ณผ๋ฅผ ์์ฑํ์์ค. my_list = ["i", "like", "studying", "python"] new_list = [] i = len(my_list) if i == 4: new_list.append(..