公告版位

目前分類:Python (4)

瀏覽方式: 標題列表 簡短摘要

├── third_party_lib
│   └── uploader.py

└── tools
    └── logFtpUploader.py

dreamtails 發表在 痞客邦 留言(0) 人氣()

index表示法:

        表示法一  my_list[=:<]

        表示法二  my_list = [ 0, 1, 2, 3, 4, 5, 6 ]

        表示法三  my_list = [ -6, -5, -4, -3, -2, -1 ]

dreamtails 發表在 痞客邦 留言(0) 人氣()

# 1. ###########
# Dictionary(Dict)
##############
#初始方式
tDict = {} 


# 新增value的方式,必須定義index-key, 此處為tKey1,tKey2
tDict["tKey1"] = "123456"
tDict["tKey2"] = "999999" 


#輸出tDict的結果
print tDict
-----------------------------------
{'tKey2': '999999', 'tKey1': '123456'}
-----------------------------------

 

dreamtails 發表在 痞客邦 留言(0) 人氣()

若在執行python的code時,發生了,如下的error:

TypeError: datetime.datetime(2012, 8, 26, 16, 18, 39, 312189) is not JSON serializable

 

可以看看code裡有沒有加上default=str,如下:

import datetime
import json 

time = datetime.datetime.now()
print json.dumps(time,default=str

-----------------------------------------------
'"2012-8-26 16:18:39.312189"'
-----------------------------------------------

dreamtails 發表在 痞客邦 留言(0) 人氣()