在范围内打印随机电话号码
我正在尝试打印大量的电话号码。在这种情况下,电话号码具有格式(24)99999999
。 (为了清楚起见,括号是偶然的。)我需要此列表随机分配,并具有某些约束。
前两个数字必须在11
和24
之间 以下两个将是第三位和第四位,必须在67
和99
之间。
这是我到目前为止所做的:
ddd = list(range(11, 24))
op = list(range(67, 99))
list1 = list(range(100, 999))
list2 = list(range(1234, 9999))
for d in ddd:
ddd = d
#print(ddd)
for fixos in op:
pre = fixos
#print(pre)
for l in list1:
part1 = l
#print(part1)
for x in list2:
part2 = x
#print(part2)
#print(f"({ddd}) {pre}{l}-{l2}")
numbers = str(ddd) + str(pre) + str(l) + str(x)
#print(numbers)
requests.urllib3.disable_warnings()
list1
和list2
构成数字的其余部分,应尽可能随机。
但是,当我运行这样的脚本时,它像这样打印
numbers : 11671001000
numbers : 11671001001
了一个。可悲的是,这不是我打算做的。我如何随机化它?
I'm trying to print a large list of phone numbers. In this context, phone numbers have a format (24)999999999
. (Parenthesis for clarity, they are incidental.) I need this list to be randomized, with certain constraints.
The first two digits must be between 11
and 24
,
the following two, which will be the the third and the fourth digits, must be between 67
and 99
.
This is what I've done so far:
ddd = list(range(11, 24))
op = list(range(67, 99))
list1 = list(range(100, 999))
list2 = list(range(1234, 9999))
for d in ddd:
ddd = d
#print(ddd)
for fixos in op:
pre = fixos
#print(pre)
for l in list1:
part1 = l
#print(part1)
for x in list2:
part2 = x
#print(part2)
#print(f"({ddd}) {pre}{l}-{l2}")
numbers = str(ddd) + str(pre) + str(l) + str(x)
#print(numbers)
requests.urllib3.disable_warnings()
The list1
and list2
compose the rest of the number, which should be as random as possible.
However when I run the script it prints like this
numbers : 11671001000
numbers : 11671001001
It goes one by one. Sadly, that's not what I intended to do. How do I get it randomized?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试此代码,它可以制作100,000个数字,您也可以将范围编辑为100,000
you can try this code it make 100,000 number also you can edit range 100,000 to your goal number
我想提出一个不同的解决方案:
由于订购了集合,因此在此处排序的输出,但它可以使用洗牌和周期对随机进行一些改进,并确保您不会使用A
SET的约束重复一个数字
。通常,我将其作为一种以不同方式思考随机化的方式 - 在选择替换的随机数(randint
)时,是一条路线,shuffle()
and code>和选择()
都是确保随机性的好方法,您可以使用zip()
andcycle()
进行实质上创建您的随机流,从中选择。解决这个问题的真正方法是创建一个发电机函数 - 我必须考虑如何解决这个问题,但这也是这里的解决方案。
I'd like to propose a different solution:
The output here is ordered because sets are ordered, but it makes some improvements on randomization using shuffle and cycle, and ensures you aren't repeating a number using the constraints of a
set
. Mostly I offer it as a way to think about the randomization differently - while selecting a random number with replacement (randint
) is a route,shuffle()
andchoice()
are both good ways to ensure randomness, and you can do things withzip()
andcycle()
to essentially create randomized streams that you're choosing from.The real way to go about this would be to create a generator function - I'd have to think a little harder how to go about that, but it's also a possible solution here.