Python/Python 어렵게 배우기 썸네일형 리스트형 Python 어렵게 배우기 - Exercise 2: Comments and Pound Characters 원문 : http://learnpythonthehardway.org/book/ex2.html 1. 텍스트 에디터로 아래와 같이 작성하고 ex2.py로 저장하자 # A comment, this is so you can read your program later. # Anything after the # is ignored by python. print "I could have code like this." # and the comment after is ignored # You can also use a comment to "disable" or comment out a piece of code: # print "This won't run." print "This will run." 2. 실행해 보자 (p.. 더보기 Python 어렵게 배우기 - Exercise 1: A Good First Program 원문 : http://learnpythonthehardway.org/book/ex1.html Exercise 0 단계 는 세팅이라 패스. 1. 텍스트 에디터(Notepad, EditPlus, ...)로 아래와 같이 작성한다. # -*- coding: utf-8 -*- #Unicode UTF-8을 사용하고 싶다면 위 코드를 코드 맨 위에 작성한다. print "Hello World!" print "Hello Again" print "I like typing this." print "This is fun." print 'Yay! Printing.' print "I'd much rather you 'not'." print 'I "said" do not touch this.' 2. ex1.py 파일로 저장한다... 더보기 이전 1 ··· 3 4 5 6 다음