背景
这种时间阅读起来很不方便
解决
data['ts'] = pd.to_datetime(data['t'],unit='ms')
可以根据需要调整unit,不过这个时间转换的时候并没有和时区关联,我们东八区看这个时间就落后了8个点,如果为了显示正确可以在基础的毫秒上加8个小时的毫秒转换
data['ts'] = pd.to_datetime(data['t'] + 8 * 60 * 60 * 1000,unit='ms')
For further actions, you may consider blocking this person and/or reporting abuse
CyberMona -
Alex -
bukakage -
ASHUTOSH PAWAR -
Once suspended, qiudaozhang will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, qiudaozhang will be able to comment and publish posts again.
Once unpublished, all posts by qiudaozhang will become hidden and only accessible to themselves.
If qiudaozhang is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to qiudaozhang.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag qiudaozhang:
Unflagging qiudaozhang will restore default visibility to their posts.
Top comments (0)