Last active
December 16, 2019 09:52
-
-
Save hongdonghyun/65d29f0d2dd3aab26dfdb40f09f2bfa5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a,b,c = 100,6,18 | |
best = a # best에 100을 넣는다. | |
if b > best: # b와 best의 값을 비교한다. | |
best = b # b가 best보다 크다면 best에 넣는다. | |
if c > best: # c와 best의 값을 비교한다. | |
best = c # c가 best보다 크다면 best에 넣는다. | |
print("Best : ",best) | |
# a, b, c = 100, 6, 18 | |
# best = a # best에 100을 넣는다. | |
# if b > a: # 6과 100을 비교한다. | |
# best = b # 6이 100보다 크지 않으니 해당 구문을 실행되지 않는다. | |
# if c > b: # 18과 6을 비교한다. | |
# if c > a: # 18과 100을 비교한다. | |
# best = c # 18은 6보다 크니 best에 값을 넣는다. | |
#print("Best :", best) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment