#代码如下: `from tkinter import * from random import * import threading from tkinter.messagebox import showinfo from tkinter.messagebox import askquestion ...
分类:
其他好文 时间:
2020-12-02 12:39:52
阅读次数:
5
Java常用类、集合、IO 常用类 Object hashCode() toString() clone() getClass() notify() wait() equals() Math 常用的数学运算 Random 生成随机数 UUID File 创建文件 查看文件 修改文件 删除文件 包装类 ...
分类:
编程语言 时间:
2020-12-01 12:40:11
阅读次数:
12
importjava.util.Arrays;importjava.util.Random;publicclassCountSort{staticclassItem{intindex;intnum;}privatestaticvoidsort(Item[]items,intbound){intn=items.length;int[]count=newint[bound];int[]sum=newi
分类:
编程语言 时间:
2020-11-27 11:52:06
阅读次数:
22
给所有link和script标签加随机版本号,方便调试样式,不用每次清缓存了; $("link,script").each(function(){ var t=Math.random().toFixed(4); /*var $tag=$(this).prop("tagName").toLowerCa ...
分类:
其他好文 时间:
2020-11-27 11:46:06
阅读次数:
19
[20201121]显示时间戳高精度版本.txt--//工作需要,需要写一个高精度显示事件戳的版本。--//以前的版本如下:# cat ts.awk# /bin/bashgawk '{ print strftime("[%Y-%m-%d %H:%M:%S]"), $0 }'--//我看了一下man ...
分类:
其他好文 时间:
2020-11-26 14:51:35
阅读次数:
6
from random import * #定义一个Info类,功能是打印介绍性信息,并且获得用户输入的两队伍能力值,模拟场次 class Info: def __init__(self): print('这个程序是模拟两支队伍A和B的排球比赛') print('程序运行需要A和B的能力值(以0到1 ...
分类:
其他好文 时间:
2020-11-26 14:34:57
阅读次数:
5
from random import random def printIntro(): #打印程序介绍信息 print("12号朱益民进行比赛分析结果:") print("这个程序模拟两个队伍A和B的某种竞技比赛") print("程序运行需要队伍A和队伍B的能力值(以0到1之间的小数表示)") d ...
分类:
其他好文 时间:
2020-11-26 14:34:22
阅读次数:
5
import matplotlib.pyplot as plt import numpy as np #数据集x,y x,y 都是向量 #给个实例x是身高(m),y是体重(kg) #我们给实际数据x,y训练出最佳的模型 y=ax+b 然后在找个身高x预测体重y x=[0.75,0.85,0.95,1 ...
分类:
编程语言 时间:
2020-11-25 12:04:23
阅读次数:
8
Random类什么式Random类?此类的实例主要用于生成伪随机数。?例如:使用户能够得到一个随机整数:Randomran=newRandon();inti=ran.nextInt();//int的取值范围Random使用步骤:查看类java.util.Random;该类需要导入后才能使用查看构造方法publicRandom();创建一个新的随机数生成器查看成员方法publicintnextInt
分类:
其他好文 时间:
2020-11-23 12:36:30
阅读次数:
8
import random import string import time usrinfo= #总字典 main_screen = """ ATM管理系统 1、登陆 2、注册 3、退出 """ login_screen = """ 1、取款 2、存款 3、转账 4、查询账户信息 5、冻结账户 6 ...
分类:
其他好文 时间:
2020-11-23 11:51:34
阅读次数:
24