本文目录一览:
- 1、Python 生成随机点坐标
- 2、python编程 编写程序自动生成0到100间的一个随机数,然后让参与者输入昵称和数字,最后判断谁猜得最准?
- 3、菜鸟,想做一个随机点名软件,抽取班上同学名字的那种。求方法,具体步骤,需要什么软件做。
Python 生成随机点坐标
import random
import numpy as np
List = np.array([(0,0),(1,1),(1.6,1.8),(3,3)])
d = 0.5
def get_random(low,high):
return((high-low)*random.random()+low)
n = 0
while n100000:
x = get_random(0,3)
y = get_random(0,3)
rand_tuple = np.array([x,y])
tmp_dist = np.sqrt(np.sum(np.square(List-rand_tuple),axis = 1))
tmp_dist_bool = tmp_dist = d
if np.sum(tmp_dist_bool) == len(List):
print(x,y)
break
n += 1
if n==100000:
print("After",n,"tries,can't get a random point!Check whether the problem has a solution!")
python编程 编写程序自动生成0到100间的一个随机数,然后让参与者输入昵称和数字,最后判断谁猜得最准?
#!/usr/bin/python3
# -*- coding:utf-8 -*-
"""
@author:Storm_duck
@file :20200605-01.py
@time :2020/6/5 15:20
"""
"""
猜数字,看谁猜的最接近
"""
import random
def get_abs(rannum, ansnum):
return abs(ansnum - rannum)
if __name__ == "__main__":
num = random.randint(1, 100)
adic = {}
lens = 0
while True:
choice = input("What's your name?,enter to quit:")
if choice == "enter":
break
if choice != "enter":
answer = int(input("What's your guess(1-100):"))
lens += 1
if choice in adic.keys():
adic[choice] = answer
else:
adic.setdefault(choice, answer)
newlist = sorted(adic.items(), key = lambda kv: get_abs(num, kv[1]), reverse = False)
if newlist[0][1] != newlist[1][1]:
if num == newlist[0][1]:
print("{} 厉害,数字就是{}:".format(newlist[0][0], newlist[0][1]))
else:
print("数字是{},猜的最接近的是:{}".format(num, newlist[0][0]))
else:
temp = []
alist = list(zip(*newlist))[1]
t = alist[0]
for i in range(alist.count(t)):
temp.append(newlist[i][0])
astr = ",".join(temp)
if num == t:
print("{}都比较厉害,数字就是{}:".format(astr, num))
else:
print("数字是{},{}的答案相同,猜的最接近。".format(num, astr))
菜鸟,想做一个随机点名软件,抽取班上同学名字的那种。求方法,具体步骤,需要什么软件做。
VB可以做,什么软件都可以,就是随机数
要点名很容易,随机抽取一名同学即可。但是点名以后的数据记录和分析处理比较复杂。
你可以下载“倪大侠点名计分器”看一看,去“倪大侠软件”官网下载最新版,不断更新中。