2010年10月16日 星期六

Hello world in Python


#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
第1行是為了給 Linux 相關的OS當Script所執行用的
第2行是為了告知Python要使用UTF-8的 encoding,
這樣才可以用中文的注解,並記得檔案存成UTF-8
'''

if __name__ == "__main__":
string1 = u"測試"
type1 = type(string1)
length1 = len(string1)
print "(%d-%s)%s"%(length1, type1, string1)

string2 = "測試"
type2 = type(string2)
length2 = len(string2)
print "(%d-%s)%s"%(length2, type2, string2)

沒有留言: