1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # # µû¶óÇÏ¸ç ¹è¿ì´Â ÆÄÀ̽ã°ú µ¥ÀÌÅÍ°úÇÐ(»ý´ÉÃâÆÇ»ç 2020) # LAB 4-7 ·Î±×ÀΠó¸®Çϱâ, 109ÂÊ # id = "ilovepython" password = "mypass1234" string1 = input("¾ÆÀ̵𸦠ÀÔ·ÂÇϽÿÀ: ") string2 = input("Æнº¿öµå¸¦ ÀÔ·ÂÇϽÿÀ: ") if string1 == id and string2 == password: print("ȯ¿µÇÕ´Ï´Ù.") elif string1 != id: print("¾ÆÀ̵𸦠ãÀ» ¼ö ¾ø½À´Ï´Ù.") else: print("ºñ¹Ð¹øÈ£°¡ Ʋ·È½À´Ï´Ù.") | cs |