Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to generate numbers randomly in Python

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

Python how to randomly generate numbers, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain for you in detail, people with this need can come to learn, I hope you can gain something.

Step 1: install the random library

The random library is a Python standard library that uses random numbers.

You can enter CMD by WIN + R and enter the code at the command prompt

Pip install random

Step two

Now you can start writing code and import random

Import random

Use def to start the function definition, followed by the function name, inside the parentheses are the parameters of the function, and inside are the function implementation code

Def number (): # randomly select 5 digits from 1 to 100 number = random.sample ([b for b in range (1100)], 5) return number

Final output

A = number () print (a)

Run the code, and the effect is as follows

To an upgraded version, write a two-color ball generation code

Let's start with six red number balls

Import randomdef number (): # six red balls randomly selected from No.1-33 blue = random.sample ([b for b in range (1Magne33)], 6)

Blue number ball

# randomly select a red ball from No.1-16 red = random.choice ([r for r in range (1Magne17)]) blue.append (red) return blue

Output

A = number () print (a)

Running result

Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 254

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report