路漫漫其修远兮,吾将上下而求索

导航

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 35 下一页

2020年8月5日 #

Linux top命令用法(未完)

摘要: 系统运行时间和平均负载: top命令顶部第一行显示与uptime命令相似的输出 这些字段显示: 当前时间 系统已运行的时间 当前登录用户的数量 相应最近5、10和15分钟内的平均负载。 可以使用 l 命令切换第一行是否显示。 任务: Tasks — 任务(进程),系统现在共有93个进程,其中处于运行 阅读全文

posted @ 2020-08-05 19:35 爱在西元间 阅读(135) 评论(0) 推荐(0) 编辑

Windows家庭版安装docker(添加Hyper-V组件、修改版本)

摘要: 有系统(专业版、企业版)和家庭版限制: 下面cmd脚本安装Hyper-V组件: pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . h 阅读全文

posted @ 2020-08-05 18:52 爱在西元间 阅读(691) 评论(0) 推荐(0) 编辑

关于Python 3.x中,使用print函数时出现的语法错误(SyntaxError: invalid syntax)的问题的原因 以及python2.x和3.x差别

摘要: 因为是2.x和3.x的差异! 参考: 关于Python 3.x中,使用print函数时出现的语法错误(SyntaxError: invalid syntax)的问题的原因_白及-CSDN博客_python3 syntaxerror: invalid syntax 【整理】总结Python2(Pyth 阅读全文

posted @ 2020-08-05 18:43 爱在西元间 阅读(503) 评论(0) 推荐(0) 编辑

pip install urllib2不能安装

摘要: 参考: pip install urllib2不能安装_qq_29755359的博客-CSDN博客_. https://blog.csdn.net/qq_29755359/article/details/70224347 阅读全文

posted @ 2020-08-05 16:23 爱在西元间 阅读(1166) 评论(0) 推荐(0) 编辑

python3安装poster库时报错解决:ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

摘要: D:\Python\Python37-32\test>pip install poster Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple Collecting poster Using cached https://pypi 阅读全文

posted @ 2020-08-05 11:25 爱在西元间 阅读(11638) 评论(0) 推荐(0) 编辑

2020年7月27日 #

关于脚本第一行的 #!/usr/bin/python 的解释

摘要: 参考: Python 基础教程 | 菜鸟教程 阅读全文

posted @ 2020-07-27 23:09 爱在西元间 阅读(231) 评论(0) 推荐(0) 编辑

Python语言程序设计-第1周 1.4 python程序语法元素分析

摘要: PS:按照字母顺序重新排列了下 单元小结: 练习与作业: 阅读全文

posted @ 2020-07-27 22:55 爱在西元间 阅读(152) 评论(0) 推荐(0) 编辑

Python语言程序设计-第1周 1.3 实例1:温度转换

摘要: #TempConert.py TempStr = input("请输入带有符号的温度值:") if TempStr[-1] in ['F','f']: C = (eval(TempStr[0:-1])- 32)/1.8 print("转换后的温度是{:.2f}C".format(C)) elif T 阅读全文

posted @ 2020-07-27 22:24 爱在西元间 阅读(340) 评论(0) 推荐(0) 编辑

Python语言程序设计-第1周 1.1 程序设计基本方法

摘要: 1 编程解决的是: 阅读全文

posted @ 2020-07-27 22:04 爱在西元间 阅读(210) 评论(0) 推荐(0) 编辑

Python语言程序设计-第0周

摘要: 阅读全文

posted @ 2020-07-27 21:47 爱在西元间 阅读(123) 评论(0) 推荐(0) 编辑

上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 35 下一页