원문 : 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 파일로 저장한다.
3. 실행~
실행 방법 : python ex1.py
알 수 있는 것들...
1. 콘솔창에 뭘 찍고싶으면 "print" 명령어를 사용해라
2. String 값은 큰 따옴표를(") 이용해도 되고 작은 따옴표(')를 이용해도 된다. 경우에 따라 적절히 사용하자
반응형
'Python > Python 어렵게 배우기' 카테고리의 다른 글
Python 어렵게 배우기 - Exercise 6: Strings and Text (0) | 2013.11.20 |
---|---|
Python 어렵게 배우기 - Exercise 5: More Variables and Printing (0) | 2013.11.20 |
Python 어렵게 배우기 - Exercise 4: Variables And Names (0) | 2013.11.19 |
Python 어렵게 배우기 - Exercise 3: Numbers and Math (0) | 2013.11.19 |
Python 어렵게 배우기 - Exercise 2: Comments and Pound Characters (0) | 2013.11.18 |