《笨办法学python》源码 Ex01.py



这是<笨办法学python> 的全部源码.

自己手敲一遍.





#_*_ coding:utf-8 _*_
#-------------------------------------------------------------------------------
# Name:        ex_01.py
# Purpose:     to support chinese .here add some code
# 
# Author:      huanghuan
#
# Created:     14-08-2013
# Copyright:   (c) huanghuan 2013
# Licence:     <your licence>
#-------------------------------------------------------------------------------


print "hello world "
print "hello again."
print "i like typing this."
print "this is fun."

# special 1
print 'Yay! Printing.'
# special 2
print "I'd much rather you 'not'."
# special 3
print 'I "said" do not touch this.'







你可能感兴趣的:(《笨办法学python》源码 Ex01.py)