Python Forum
Asking for help in my code for a "Guess the number" game.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Asking for help in my code for a "Guess the number" game.
#2
Starting with someone else's code is a bad idea, largely because you can't be sure of the logic he/she used to put it together. Suggest you start with mapping the flow and tasks of the program, like this:
1. Welcome note and get user name
2. Generate random integer, initiate counter
3. Start loop asking for guesses
4. If guess high give message, deduct 1 from counter. If counter > 0 go to 3, otherwise go to end block
5. If guess low give message, deduct 1 from counter. If counter > 0 go to 3, otherwise go to end block
6. If guess correct, give message and go to end block
7. <end block> Print game over, ask if wants to play again
8. if response is yes, go to 2, otherwise stop

OK so that is the basic blocking out of the tasks. Do each one, and you learn along the way.
Reply


Messages In This Thread
RE: Asking for help in my code for a "Guess the number" game. - by jefsummers - Aug-14-2019, 11:21 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Help - random number/letter guessing game juin22 1 3,274 Aug-16-2020, 06:36 AM
Last Post: DPaul
  Dynamically chosing number of players in a "game" nsadams87xx 5 4,348 Jul-17-2020, 02:00 PM
Last Post: deanhystad
  Can someone help me optimize this game for large number of strings Emekadavid 13 5,251 Jul-06-2020, 06:16 PM
Last Post: deanhystad
  making a guessing number game blacklight 1 2,264 Jul-02-2020, 12:21 AM
Last Post: GOTO10
  Prime number code ryfoa6 3 2,997 Mar-21-2020, 12:23 AM
Last Post: ryfoa6
  Trouble interpreting prime number code ryfoa6 1 2,345 Mar-20-2020, 03:47 PM
Last Post: stullis
  Guess the number game jackthechampion 5 3,294 Mar-07-2020, 02:58 AM
Last Post: AKNL
  restarting game code zyada7med 5 4,816 Sep-03-2019, 09:24 PM
Last Post: ichabod801
  Guess a number game Drone4four 4 5,419 Nov-16-2018, 03:56 AM
Last Post: Drone4four
  Code: Creating a basic python game? searching1 5 3,554 Nov-12-2018, 05:18 AM
Last Post: searching1

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020