会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Martin Tai
你来时携风带雨,我无处可避,你走时乱了四季,我久病难医
首页
管理
上一页
1
2
2021年4月21日
what happens if you cut down all of a city’s tree
摘要:
阅读全文
posted @ 2021-04-21 06:34 linux_txl
阅读(59)
评论(0)
推荐(0)
anne_lamott_12_truths_i_learned_from_life_and_writing
摘要:
阅读全文
posted @ 2021-04-21 06:17 linux_txl
阅读(56)
评论(0)
推荐(0)
2021年4月20日
python 虚拟环境
摘要: python 虚拟环境 创建一个虚拟环境 python3 -m venv /path/to/new/virtual/environment 使用虚拟环境 source ./venv_name/bin/activate
阅读全文
posted @ 2021-04-20 23:32 linux_txl
阅读(72)
评论(0)
推荐(0)
mysql 常用命令
摘要: mysql 常用命令 启动mysql服务 mysql.server start 停止mysql 服务 mysql.server stop 重启mysql服务 mysql.server restart 退出命令行 exit; 更改密码 mysqladmin -u root password 12345
阅读全文
posted @ 2021-04-20 13:56 linux_txl
阅读(81)
评论(0)
推荐(0)
2021年4月16日
python基础操作
摘要: 1. 按行读取文件 def readNode(filename): resultList = [] with open(filename, 'r') as f: while True: line = f.readline() # string if not line: break if line[0
阅读全文
posted @ 2021-04-16 17:41 linux_txl
阅读(237)
评论(0)
推荐(0)
上一页
1
2