We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8de9ea commit ee9c14bCopy full SHA for ee9c14b
README.md
@@ -8,5 +8,3 @@
8
* [dive into python](http://www.diveintopython.net/toc/index.html)
9
* [learn python the hardway](http://learnpythonthehardway.org/book/)
10
* [python官网教程](https://docs.python.org/2/tutorial/)
11
-* [crossin的编程教室](http://crossin.me/forum.php?mod=forumdisplay&fid=2)
12
-
hello-world.py
@@ -1 +1,9 @@
1
-print 'i\'m so cool~'
+#!/usr/bin/python
2
+#coding:utf-8
3
+#上面两行是解决文件中 中文的问题
4
+print 'python is so cool~';
5
+print 'why do you think python is cool?';
6
+answer = raw_input();
7
+print 'your answer is ';
+print answer;
+print ' is so cool~'
0 commit comments