会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
尔伴
博客园
首页
新随笔
联系
订阅
管理
2019年8月20日
python-threading
摘要: 借用虫师的多线程示例,了解多线程的概念。 #!/usr/bin/python # -*- coding: UTF-8 -*- import threading import time def music(): for i in range(1, 3): print 'music ' + time.s
阅读全文
posted @ 2019-08-20 18:51 尔伴
阅读(139)
评论(0)
推荐(1)
编辑
2019年7月4日
shell杂记-shell特别点
摘要: 1、shell变量 ①变量名和等号之间不能有空格:your_name="runoob.com" ②只读变量定义:readonly you_name,在定义后无法被修改 ③删除变量:unset your_name ④获取字符串长度:echo ${#your_name} ⑤提取子字符串:echo ${y
阅读全文
posted @ 2019-07-04 09:28 尔伴
阅读(136)
评论(0)
推荐(1)
编辑