22. Python
玄苦大师233
机会往往是长期准备和酝酿的而不能只靠一时的主动与激情所以认真写好技术博客吧
新博客 =》https://chenguolin.github.io/
展开
-
【Python】Linux安装新版本Python步骤
一. 安装依赖库yum -y install python-devel openssl openssl-devel gcc sqlite sqlite-devel mysql-devel libxml2-devel libxslt-devel tkinter tk-devel#下载Pythonmkdir /tmp/pythoncd /tmp/pythonwget https://ww...原创 2019-05-31 16:04:18 · 376 阅读 · 0 评论 -
【Python】Python中的时间处理
一. datetimePython中处理时间最重要的一个Module就是datetime引用:import datetime常用的类:datetime.date: 代表日期(year, month, day)datetime.time: 代表一天内时间(hour, minute, second, microsecond)datetime.datetime: 代表完整的时间,也就是上面...原创 2019-05-31 16:05:03 · 767 阅读 · 0 评论 -
【Python】python安装packages
#!/bin/sh## 依赖包安装目录INSTALL_DIR=$(pwd)/install_dirif [ ! -d $INSTALL_DIR ]; then mkdir $INSTALL_DIRficd $INSTALL_DIR## python版本PYTHON=/home/admin/.pythonbrew/pythons/Python-2.7.[0-9]/b...原创 2019-05-31 16:05:49 · 780 阅读 · 0 评论