Answers for "how to use random"

84

random number python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)
Posted by: Guest on February-15-2020
27

python random

# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
# random generates a random real number in the interval [0, 1)
print(random.random())
Posted by: Guest on March-03-2020
12

java random usage

import java.util.Random;

Random rndm = new Random();
int mnmbr = 10;

int rndNumber = rndm.nextInt(mnumber) + 1;

System.out.println(rndNumber);
Posted by: Guest on October-31-2020
4

python random

from random import randint # Import randint from random
print(randint(1,20)) # Gets random number from first parameter to the second
Posted by: Guest on October-07-2020
2

random in python

#Using Random choice python
#Running Race game
import time
import random
gamelist = ['You lose the race', 'You win the race']
Player = input('')
print(' Hi ' + Player + ' , welcome to the running race game')
time.sleep(2)
print('3')
time.sleep(1)
print('2')
time.sleep(1)
print('1')
time.sleep(2)
print(random.choice(gamelist))
Posted by: Guest on October-04-2020
1

random module in python

#Class Examples in random Module

>>> random()                             # Random float:  0.0 <= x < 1.0
0.37444887175646646

>>> uniform(2.5, 10.0)                   # Random float:  2.5 <= x < 10.0
3.1800146073117523

>>> expovariate(1 / 5)                   # Interval between arrivals averaging 5 seconds
5.148957571865031

>>> randrange(10)                        # Integer from 0 to 9 inclusive
7

>>> randrange(0, 101, 2)                 # Even integer from 0 to 100 inclusive
26

>>> choice(['win', 'lose', 'draw'])      # Single random element from a sequence
'draw'

>>> deck = 'ace two three four'.split()
>>> shuffle(deck)                        # Shuffle a list
>>> deck
['four', 'two', 'ace', 'three']

>>> sample([10, 20, 30, 40, 50], k=4)    # Four samples without replacement
[40, 10, 50, 30]
Posted by: Guest on October-19-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language