摘要: # -*- coding:utf-8 -*- #while 练习 ''' @ 练习1:输入不同的能量来源,显示不同的能量值。 @ author:jll @ create:2019-11-20 ''' while True: info = input('\n查询能量请输入能量来源!退出程序请输入0\n 阅读全文
posted @ 2019-11-20 17:55 jxba 阅读(365) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- ''' @ 功能:模拟逢七拍腿游戏,1-99,共拍几次腿。 @ author:jll @ create:2019-11-20 ''' total = 99 # 记录拍腿次数的变量 for number in range(1,100): # 创建一个从1到 阅读全文
posted @ 2019-11-20 17:09 jxba 阅读(4789) 评论(0) 推荐(0) 编辑
摘要: Linux(CentOS/RedHat)安装httpd http://blog.csdn.net/java_pengjin/article/details/6910335 [root@localhost jianglili]# ls Desktop [root@localhost jianglili 阅读全文
posted @ 2019-11-20 14:31 jxba 阅读(2133) 评论(0) 推荐(0) 编辑
摘要: ./ab -n 22 地址 压力测试工具ab(apache自带) http://www.jb51.net/article/59469.htm 目录:一般在apache安装目录下/usr/local/apache/bin/ ab 启动:./ab -n在测试会话中所执行的请求个数。默认时,仅执行一个请求 阅读全文
posted @ 2019-11-20 11:29 jxba 阅读(802) 评论(0) 推荐(0) 编辑