Skip to content Skip to sidebar Skip to footer

I Tried This In Python 2.4? But It Is Not Working Properly?

Task 3 Determining the outcome of an encounter When there is an encounter between two characters the outcome is determined by the following process: • The differences between the

Solution 1:

random.randint is a function. I think you intended to use...

if(random.randint() < umar):

And alike in many lines of the code.

Post a Comment for "I Tried This In Python 2.4? But It Is Not Working Properly?"