X Tutup
#!/usr/bin/python #coding:utf-8 #上面两行是解决文件中 中文的问题 print 'why do you think python is cool?'; answer = raw_input(); print 'your answer is: ', answer, ' is so cool~';
X Tutup