Python Forum
Simulate an answer based on user input [Beginner needs guidance]
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Simulate an answer based on user input [Beginner needs guidance]
#2
How did you determine that given the user enters 0.3 that the only viable options are 1) Team A wins & Team D wins or 2) Team B wins & Team D wins?

That is the first step. Defining the steps needed to come up with a solution. Write them down on paper and apply them to different inputs. If the steps always give the correct answer, they define the algorithm. This algorithm is the central part of your program.

The algorithm should help you decide how you decide what data structures will work best for your solution. When solving using pencil and paper, how did you organize the data? Did you make a table like this?
Output:
Game, win, draw, lose A-B, 0.3, 0.5, 0.2 C-D, 0.5, 0.4, 0.1
This could be implemented many ways in Python. It could be a pandas dataframe. It could be a row of dictionaries. It could be a row of rows.
Reply


Messages In This Thread
RE: Simulate an answer based on user input [Beginner needs guidance] - by deanhystad - Nov-12-2022, 03:47 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Answer for newbie, Sqlite3 Froger 2 931 Sep-27-2023, 05:33 PM
Last Post: noisefloor
  Coding answer for newbie cg3 2 1,259 Aug-05-2023, 12:17 PM
Last Post: jefsummers
  How to create a menu and execute a function based on user selection in python? Thedarkphoenix 1 1,372 Nov-23-2022, 07:53 PM
Last Post: Larz60+
  Help beginner input csv on python adri1998en 2 1,507 Apr-20-2022, 07:48 AM
Last Post: VadimCr
  beginner having text based adventure trouble mrgee 2 2,119 Dec-16-2021, 05:07 AM
Last Post: buran
  Print user input into triangle djtjhokie 1 2,449 Nov-07-2020, 07:01 PM
Last Post: buran
  Changing Directory based on user input paulmerton4pope 13 8,246 Aug-14-2020, 11:48 AM
Last Post: GOTO10
  sys.stdin to do a word count based on user entry Kaltex 3 3,760 Jul-19-2020, 01:54 PM
Last Post: deanhystad
  What am I doing wrong to not get the answer pav1983 7 3,795 Jun-25-2020, 08:53 PM
Last Post: ndc85430
  how to add the user input from file into list wilson20 8 4,409 May-03-2020, 10:52 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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