随笔分类 - Python
Python开发知识分享
摘要:1.安装编译环境包(防止出现安装错误) yum install gcc-c++ gcc make cmake zlib-devel bzip2-devel openssl-devel ncurse-devel -y 2.在线下载Python3.7源码包 #进入tmp目录 cd /tmp #下载pyt
阅读全文
摘要:传入一个时间戳,以天时分秒格式打印出时间差 输入一个10位的时间戳,求出时间差 def time_diff(timestamp): onlineTime = datetime.datetime.fromtimestamp(timestamp) localTime = datetime.datetim
阅读全文
摘要:#!/usr/bin/env python# -*- encoding: UTF-8 -*-''' @Project -> File :${PROJECT_NAME} -> ${NAME}.py@IDE :${PRODUCT_NAME}@Author :清风@Date :${DATE} ${TIME
阅读全文