会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
JerryZao
为什么坚持,想一想当初,每天进步一点点!
管理
上一页
1
···
25
26
27
28
29
30
31
32
33
···
47
下一页
2018年8月16日
Python-模块之时间模块(time,datetime)
摘要: 1、标准库datetime(实验测试,在最后) datetime模块: 对日期、时间、时间戳的处理 datetime类: * 类方法: today() 返回本地时区的datetime对象 now(tz= None)返回当前时间的datetime对象,时间到微秒,如果tz 为None,返回和today
阅读全文
posted @ 2018-08-16 20:27 JerryZao
阅读(356)
评论(0)
推荐(0)
2018年8月15日
逻辑卷-LVM
摘要: 1 LVM2:(在ext文件系统实验,brtfs自己就支持btree) 2 3 LVM: Logical Volume Manager, Version: 2 4 5 dm: device mapper,将一个或多个底层块设备组织成一个逻辑设备的模块; 6 /dev/dm-# 7 8 /dev/mapper/VG_NAME-LV_NA...
阅读全文
posted @ 2018-08-15 22:44 JerryZao
阅读(200)
评论(0)
推荐(0)
RAID及软RAID的实现
摘要: 1 RAID: 2 Redundant Arrays of Inexpensive Disks 3 Redundant Arrays of Independent Disks 独立冗余磁盘阵列 4 5 Berkeley: A case for Redundent Arrays of Inexpensive Disks RAID 6...
阅读全文
posted @ 2018-08-15 21:15 JerryZao
阅读(368)
评论(0)
推荐(0)
Python编程思想之自己总结
该文被密码保护。
阅读全文
posted @ 2018-08-15 14:39 JerryZao
阅读(0)
评论(0)
推荐(0)
输入数字or 字符串,统计重复次数---字典统计练习
摘要: 1 ''' 2 输入一个数字,打印每一位及其重复次数 3 ''' 4 num = input("input a num:").strip().lstrip('0') # '00100' 5 6 # NO 1 7 counter = {} 8 for i in num: 9 counter[i] = counter.get(i, 0) + 1 10 print(coun...
阅读全文
posted @ 2018-08-15 11:46 JerryZao
阅读(575)
评论(0)
推荐(0)
上一页
1
···
25
26
27
28
29
30
31
32
33
···
47
下一页
公告