Dec-02-2024, 04:41 PM
Hi - super noob here.... so thanks in advance for any help on this.
I am trying to write a script for sports betting, just for fun...
I am getting stuck on how to have the user select the team that is favored to win.
Here is current code:
#Getting the final score of each team
team1 = int(input("Team1 score?"))
team2 = int(input("Team2 score?"))
#Getting the spread and favorite
spread = int(input("Spread?"))
fav = int(input("Who is favored?", )) <-- this where i'm stuck... how to have the user select the team that is favored between
team1 adn team 2
I am trying to write a script for sports betting, just for fun...
I am getting stuck on how to have the user select the team that is favored to win.
Here is current code:
#Getting the final score of each team
team1 = int(input("Team1 score?"))
team2 = int(input("Team2 score?"))
#Getting the spread and favorite
spread = int(input("Spread?"))
fav = int(input("Who is favored?", )) <-- this where i'm stuck... how to have the user select the team that is favored between
team1 adn team 2