


Share an example of how Python random generates N random numbers that do not repeat within a certain interval.
In a recent experiment, the data needed to be randomly split into two parts according to a certain proportion. The core of this problem is actually the problem of generating non-repeating random numbers. The first thing I thought of was the recursive method, and then I discovered that Python actually already provides a function for this method, which can be used directly. The specific code is as follows:
#生成某区间内不重复的N个随机数的方法 import random; #1、利用递归生成 resultList=[];#用于存放结果的List A=1; #最小随机数 B=10 #最大随机数 COUNT=10 #生成随机数的递归数学,参数counter表示当前准备要生成的第几个有效随机数 def generateRand(counter): tempInt=random.randint(A,B); # 生成一个范围内的临时随机数, if(counter<=COUNT): # 先看随机数的总个数是不是够了,如果不够 if(tempInt not in resultList): # 再检查当前已经生成的临时随机数是不是已经存在,如果不存在 resultList.append(tempInt); #则将其追加到结果List中 counter+=1;# 然后将表示有效结果的个数加1. 请注意这里,如果临时随机数已经存在,则此if不成立,那么将直接执行16行,counter不用再加1 generateRand(counter); # 不管上面的if是否成立,都要递归。如果上面的临时随机数有效,则这里的conter会加1,如果上面的临时随机数已经存在了,则需要重新再生成一次随机数,counter不能变化 generateRand(1);#调用递归函数,并给当前要生成的有效随机数的个序号置为1,因为要从第一个开始嘛 print(resultList)# 打印结果 #2、利用Python中的randomw.sample()函数实现 resultList=random.sample(range(A,B+1),COUNT); # sample(x,y)函数的作用是从序列x中,随机选择y个不重复的元素。上面的方法写了那么多,其实Python一句话就完成了。 print(resultList)# 打印结果
Result:
[Related recommendations]
2. Example tutorial of Python random() function
3. Share an example tutorial of random (randomly generated number) in Python
4. Share an example tutorial on how to generate random numbers using the random module in Python
5. Common methods and usage examples of the Python random module (obtaining random numbers)
6. Python random module common methods
7. Python module learning: random random number generation
The above is the detailed content of Share an example of how Python random generates N random numbers that do not repeat within a certain interval.. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use RANDBETWEEN to generate random numbers in Excel If you want to generate random numbers within a specific range, the RANDBETWEEN function is a quick and easy way to do it. This allows you to generate random integers between any two values of your choice. Generate random numbers in Excel using RANDBETWEEN: Click the cell where you want the first random number to appear. Type =RANDBETWEEN(1,500) replacing "1" with the lowest random number you want to generate and "500" with

How to optimize random number generation performance in Java development Random numbers are widely used in computer science, especially in cryptography, simulation, games and other fields. In Java development, we often need to generate random numbers to meet various needs. However, the performance of random number generation is often one of the concerns of developers. This article will explore how to optimize random number generation performance in Java development. ThreadLocalRandom class was introduced in Java7 using ThreadLocalRandom class

Generate random numbers using Go language Go language is a modern, concise and efficient programming language that provides many built-in libraries for generating random numbers. Among them, the crypto/rand package provides a series of functions to generate secure random numbers. In this article, we will generate random numbers by using the Read function from the crypto/rand package. First, we need to import the crypto/rand package and create a byte array to store the random numbers. The code example is as follows: packagemain

How to use PHP arrays to generate random numbers and verification codes Random numbers and verification codes are very common during the development of websites and applications. PHP provides various methods to generate random numbers and verification codes. This article will introduce how to use PHP arrays to generate random numbers and verification codes, with corresponding code examples. 1. Generate random numbers In PHP, we can use the rand() function to generate random numbers. The rand() function requires two parameters, the minimum value and the maximum value. The sample code is as follows: $min=1;$max=

How to use Random.nextInt() method to generate random numbers in Java? Random numbers are widely used in computer science and can be used to generate passwords, random events in games, random sampling in data science, etc. Java provides the Random class to generate random numbers, and the nextInt() method can be used to generate a random integer. Below I will introduce how to use the Random.nextInt() method to generate random numbers and provide specific code examples. First, we need

How to avoid generating duplicate random numbers in Golang: Create a new random number generator rand.New(rand.Source). Use rand.NewSource(time.Now().UnixNano()) as the entropy source. Use rand.Intn(n) to generate random integers.

Explore the method and application of NumPy to generate random numbers. Introduction: Random numbers are widely used in computer science and statistics, such as simulation experiments, data generation and feature selection. In Python, the NumPy (NumericalPython) library is a powerful numerical computing library that provides many functions for generating random numbers. This article will explore the random number generation method in NumPy and give specific code examples. 1. NumPy’s random number generation function provided by NumPy

In this article, we will delve into an interesting and practical issue related to string manipulation in C programming. We will build a "random password generator" in C. This question will not only enhance your understanding of string operations but also increase your knowledge of the C standard library. The problem statement task is to build a program that generates random passwords of a specified length. Passwords should contain uppercase and lowercase letters, numbers, and special characters. C Solution Approach To solve this problem, we will leverage the power of the C standard library. We will use the rand() function to generate random numbers within a specified range. We will create a string containing all the characters that the password may contain, and then for each character in the password, we will randomly select one from this string
