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.
where is your code man???༼ つ ◕_◕ ༽つ
try
import random chance = random.choice(["yes", "no"])
@theangryepicbanana AH yes that works, but how would i manipulate the chance of either being chosen
@theangryepicbanana Answering python questions? I'm disappointed in you taeb.
@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
@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 :)
check out tic tac toe with bots
@mathewman1000 Here try this:
Hope it Helps!