├── third_party_lib
│ └── uploader.py
│
└── tools
└── logFtpUploader.py
公告版位
目前分類:Python (4)
- Jun 15 Wed 2016 15:44
How to import python file (.py) in specific directory?
- Jun 10 Wed 2015 14:16
List記憶方式 for Python 2.7.6
index表示法:
表示法一 my_list[=:<]
表示法二 my_list = [ 0, 1, 2, 3, 4, 5, 6 ]
表示法三 my_list = [ -6, -5, -4, -3, -2, -1 ]
- Nov 13 Tue 2012 15:15
Python Dictionary V.S. List
# 1. ###########
# Dictionary(Dict)
##############
#初始方式
tDict = {}
# 新增value的方式,必須定義index-key, 此處為tKey1,tKey2
tDict["tKey1"] = "123456"
tDict["tKey2"] = "999999"
#輸出tDict的結果
print tDict
-----------------------------------
{'tKey2': '999999', 'tKey1': '123456'}
-----------------------------------
- Nov 13 Tue 2012 15:14
如何使用Python讀出MySQL的datetime.datetime時間格式後,再轉成JSON可讀格式(Encoder)
若在執行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"'
-----------------------------------------------