How do you include things such as chance in your Python code?
Hi. I'm trying to include things such as chance in Python, what i'm trying to do is take an integer, and make that integer into a percentage, and from that percentage and change the outcome of something based on the result.
For example, lets say i want to have something happen 50% of the time, and the other 50% of the time, something else happens, for example, printing the word "yes" or the word "no" based on the outcome of the chance.
kamalhasan
where is your code man???༼ つ ◕_◕ ༽つ
theangryepicbanana
try
import random chance = random.choice(["yes", "no"])
mathewman1000
@theangryepicbanana AH yes that works, but how would i manipulate the chance of either being chosen
Scoder12
@theangryepicbanana Answering python questions? I'm disappointed in you taeb.
theangryepicbanana
@Scoder12 just because I hate python doesn't mean I don't know it. The reason I don't like it is because I know it
ArchieMaclean
@mathewman1000 If you wanted to make it twice as likely to pick
yes
as no
, then you could do something like this:
import random chosen = random.choice(["yes","yes","no"])
Please upvote if this helps :)
kamalhasan
check out tic tac toe with bots
Hope it Helps!