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
| msg1 = "message 1" # msg1 변수에 "message 1" 문자열을 저장 | |
| msg2 = "message 2" # msg2 변수에 "message 2" 문자열을 저장 | |
| msg3 = msg1 + msg2 # msg3 변수에 msg1, msg2 변수를 더한 값을 저장 | |
| print(msg1) # print 함수를 호출하여 msg1 변수의 내용을 화면에 출력 | |
| print(msg2) # print 함수를 호출하여 msg2 변수의 내용을 화면에 출력 |
NewerOlder