python編程中遇到的錯誤類型,緣由及解決方法

1、TypeError 1.   user_t = username + time      #將username和time拼接在一塊兒      TypeError: must be str, not float 緣由:time獲取到的time.time()當前時間戳爲float類型,float不能直接跟字符串進行拼接 解決方法:將time轉換成字符串,即str(time) 2. TypeErr
相關文章
相關標籤/搜索