写了两个生成随机列表的程序 以后跟小甲鱼上课就不用再抄列表了 虽然很弱智
本帖最后由 mumei2018 于 2023-6-29 20:03 编辑随机数字列表
import random
r_list = []
len_list = int(input('Enter arguments amount:'))
x = int(input('Enter range from:'))
y = int(input('Enter range to:'))
def rand_list(len_list):
count = 0
while count < len_list:
r_list.append(random.randint(x,y))
count += 1
return r_list
print(rand_list(len_list))
随机字母列表
import random
alphabet = []
alphabet[:] = 'abcdefghijklmnopqrstuvwxyz'
r_list = []
len_list = int(input('Enter arguments amount:'))
def rand_list(len_list):
count = 0
while count < len_list:
r_arg = random.randint(0,25)
r_list.append(alphabet)
count += 1
return r_list
print(rand_list(len_list))
以后跟小甲鱼上课就不用再抄列表了 点一下 打出来 复制就好 这么弱智的东西还敢拿出来秀{:10_282:} {:10_256:}{:10_256:}{:10_256:}
>>>
>>>
['r', 'k', 'x', 'n', 'b', 'd', 't', 'h', 'j', 'a', 'p', 'd', 's', 'e', 'f', 'u', 'c', 'q', 'k', 'u']
>>>
页:
[1]