int() argument must be a string or a number, not 'tuple'
Error in formatting: coercing to Unicode: need string or buffer, int found
Data truncated for column 'content' at row 1
sql語句中單引號的設置
字段類型
字段長度
'ascii' codec can't decode byte 0xe7 in position 0: ordinal not in range(128)
在函數中出現中文的話會出現這個錯誤,簡單的辦法就是給編碼
如:
"我的博客".decode("utf-8")
?