Python
海边的椰子树
这个作者很懒,什么都没留下…
展开
-
python计算两个数的百分比
python计算两个数百分比的问题,python 2.7 环境。代码:#!/usr/bin/env python#function: 计算百分比#USAGE: python calculator.py num1 num2import sysa=sys.argv[1]a=float(a)b=sys.argv[2]b=float(b)print "%.2f%%" % (a/b*100)原创 2017-02-09 10:23:40 · 17500 阅读 · 0 评论 -
Python在两个数字之间获取n个随机数,并记录在文件中
python2.7使用random模块,实现在两个指定的数之间获取n个随机数,并记录在指定的文件中。原创 2017-01-22 14:06:45 · 5639 阅读 · 0 评论 -
python 获取n天前的日期列表、获取指定日期n天前的日期
python 获取n天前的日期列表、获取指定日期n天前的日期获取今天的前n天的日期列表import datetimedef get_nday_list(n): import datetime before_n_days = []原创 2017-03-01 12:43:33 · 8846 阅读 · 0 评论 -
pip 配置使用国内 阿里云/豆瓣 pip源
pip 配置使用国内 阿里云/豆瓣 pip源国外的pip源不稳定 且速度慢,这里介绍下怎么使用国内的pip源使用镜像源很简单,用-i指定就行了:easy_install -i http://pypi.douban.com/simple/ flaskpip install -i http://pypi.douban.com/simple/ flask有的时候 上面的出现报错的话原创 2017-03-20 11:06:24 · 6761 阅读 · 0 评论 -
Python IP地址转整数和整数转IP地址
Python IP地址转整数和整数转IP地址IP地址转整数代码:[root@ops-ip-statistic]# cat iptonum.py #!/usr/bin/env pythonimport sysip=sys.argv[1]原创 2017-03-29 18:30:59 · 3266 阅读 · 0 评论 -
python3中split分割字符串出现错误 TypeError‘str’ does not support the buffer interface
python3中split分割字符串出现错误 TypeError‘str’ does not support the buffer interface原创 2017-03-23 16:16:50 · 1935 阅读 · 0 评论