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 use Python to realize the number guessing game

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article mainly shows you "how to use Python to achieve number guessing game", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "how to use Python to achieve number guessing game" this article.

Basic environment configuration

Version: Python3

System: Windows

Game of guessing numbers

Mainly involves knowledge points: basic data types, loops (for loop, while, if..else)

Go directly to the code, the comments on the code are very clear

Import random# calls random module num = random.randint (1500) # randomly generates a number from 1 to 500 and assigns a value to numprint ('guess how big it is') time = input () # enter the value you guessed temp = int (time) # convert your guessed value to the number of times you guessed # generate a True loop and then use if else The elif statement further excludes the range of wrong numbers and adds 1while True: if temp = = num: print ('guessed right') if I = = 1: print ('got it right the first time') break# checks the value of I when the input result is equal to the randomly generated result and checks the value of I when the input result is equal to the randomly generated result. Print out the corresponding string elif 500 > = temp > num: print ('too big, Sao Nian') print ('come on, the scope is further narrowed') if 10

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: 0

*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