一 前言 本篇主讲内容为python基础模块random库的基本使用,读者熟悉基本用法即可,需要特殊要求查询官方文档即可 公众号: 知识追寻者 知识追寻者(Inheriting the spirit of open source, Spreading technology knowledge;) 二 ...
分类:
编程语言 时间:
2020-05-07 15:18:36
阅读次数:
67
Java面试过程,JVM属于必考题系列: 直通BAT必考题系列:深入详解JVM内存模型与JVM参数详细配置 直通BAT必考题系列:JVM的4种垃圾回收算法、垃圾回收机制与总结 直通BAT必考题系列:7种JVM垃圾收集器特点,优劣势、及使用场景 直通BAT必考题系列:JVM性能调优的6大步骤,及关键调 ...
分类:
其他好文 时间:
2020-05-07 13:37:47
阅读次数:
93
JVM系列 直通BAT必考题系列:7种JVM垃圾收集器特点,优劣势、及使用场景 直通BAT必考题系列:JVM的4种垃圾回收算法、垃圾回收机制与总结 直通BAT必考题系列:深入详解JVM内存模型与JVM参数详细配置 JVM内存调优 对JVM内存的系统级的调优主要的目的是减少GC的频率和Full GC的 ...
分类:
其他好文 时间:
2020-05-07 13:23:14
阅读次数:
80
将ArrayList中的元素按照给定字符拼接起来 public static void main(String[] args) { List<String> list = Arrays.asList("nice","to","meet","you"); System.out.println(list ...
分类:
编程语言 时间:
2020-05-07 00:34:55
阅读次数:
81
#!/bin/bashecho "1.剪刀 2.石头 3.布"game=(剪刀 石头 布)num=$[RANDOM%3]sui=${game[$num]}echo $suiecho $numwhile truedo read -ep "是否开始游戏,请输入yes或no" aa if [ aa == ...
分类:
其他好文 时间:
2020-05-06 21:57:00
阅读次数:
56
#!/bin/bashsui=$(expr $RANDOM % 100)ci=0echo "商品的价格"while truedo read -ep "请输入你猜测的价格" cai let ci++ if [ $cai -eq $sui ] then echo "恭喜你猜对了实际价格$sui" ech ...
分类:
其他好文 时间:
2020-05-06 21:45:48
阅读次数:
83
枚举一些随机图片的接口 http://lorempixel.com/1600/900 https://unsplash.it/1600/900?random 环境背景: https://img.xjh.me/random_img.php?type=bg&ctype=nature&return=302 ...
分类:
其他好文 时间:
2020-05-06 21:44:37
阅读次数:
85
from random import random def printIntro(): print("这个程序模拟两个选手A和B的某种竞技比赛") print("程序运行需要A和B的能力值(以0到1之间的小数表示)") def getInputs(): a = eval(input("请输入选手A的 ...
分类:
其他好文 时间:
2020-05-06 21:25:35
阅读次数:
52
# 直接生成时间索引,支持str, datetime.datetime rng=pd.DatetimeIndex(['12/1/2017','12/2/2017','12/3/2017','12/4/2017','12/5/2017']) print(rng,type(rng)) print(rng ...
分类:
其他好文 时间:
2020-05-06 01:28:02
阅读次数:
92
1 import requests 2 import time 3 import random 4 url = ['http://cq.srx123.com/', 5 'http://cq.srx123.com/article.php', 6 'http://cq.srx123.com/yszc.p ...
分类:
编程语言 时间:
2020-05-05 20:31:42
阅读次数:
67