上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 91 下一页
  2016年1月5日
摘要: int(2) #整形 float(2) #浮点数字 str(2) #字符串 #字符串相加,将数字转换为字符串 def ul2(x): x2=str(x) #print type(x2),x2 return x2+'33' 执行 ul2(3) 返回 '333' 格式化小数点后两位: a='3.4567 阅读全文
posted @ 2016-01-05 16:02 momingliu11 阅读(363) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python# -*- coding: utf-8 -*-import os#返回脚本所在目录print os.path.split(os.path.realpath(__file__))[0]#返回脚本文件名称print os.path.split(os.path.realp... 阅读全文
posted @ 2016-01-05 15:06 momingliu11 阅读(182) 评论(0) 推荐(0) 编辑
  2016年1月4日
摘要: 读取csv文件: 输出到csv文件: 实例: 阅读全文
posted @ 2016-01-04 17:19 momingliu11 阅读(860) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python# -*- coding: utf-8 -*-import osof = open('servers.txt','r')ofw=open('servers_ping.txt','a')for f in of: server = f.split(',')[0]... 阅读全文
posted @ 2016-01-04 14:35 momingliu11 阅读(437) 评论(0) 推荐(0) 编辑
摘要: #格式化字符print "hello, %s" % ('mm')#传递参数 n="192.168.200.2"os.popen('ping %s -c 2' % (n)).readlines() 阅读全文
posted @ 2016-01-04 14:15 momingliu11 阅读(1620) 评论(0) 推荐(0) 编辑
摘要: 'abcd'[:-1] #去掉最后一个字符'abcd'[:-2] #去掉最后两个字符range(1,10)[::2] #取奇数'abcd'[::-1] #反转字符串'abcd.efg'.split('.') #分割字符串'abcd'.find('c') #查找字符索引位置,找不到返回-1 ... 阅读全文
posted @ 2016-01-04 11:10 momingliu11 阅读(469) 评论(0) 推荐(0) 编辑
  2015年12月31日
摘要: os.system('ls -l') #只执行命令,不能将结果赋予变量 os.system('mkdir test') #创建test目录 files = os.popen('ls -l').readlines() #可以将执行结果赋予变量 os.system('./l.sh') #运行l.sh脚本 阅读全文
posted @ 2015-12-31 11:00 momingliu11 阅读(2628) 评论(0) 推荐(0) 编辑
  2015年12月30日
摘要: aa=[1,2,8,7,0,13,28,3]sorted(aa) #原list不变,从小到大排序 aa.sort() #改变原lisaa.sort(reverse=True) #反转 for i in (sorted(dir(q),reverse=True)):i #方法,属性倒序显示 示例: so 阅读全文
posted @ 2015-12-30 16:27 momingliu11 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: 获取文件/文件夹属性: 阅读全文
posted @ 2015-12-30 11:22 momingliu11 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 时间格式转换为时间戳: 字符串时间转换为时间戳: 注:时间元组就可比较大小 将字符串时间转换为可比较的时间格式: 时间加减计算: time和datetime中的strftime在多线程中是非安全的,在多线程中运行“time.strptime('2016-01-01 12:01:00','%Y-%m- 阅读全文
posted @ 2015-12-30 11:07 momingliu11 阅读(842) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 91 下一页