“Python au hasard” Réponses codées

Python au hasard

# imports random
import random
# randint generates a random integar between the first parameter and the second
print(random.randint(1, 100))
Hurt Hippopotamus

Python au hasard

# 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())
Cooperative Cicada

Python au hasard

#import random 
import random

names = ['Harry', 'John', 'Smith', 'Larry']

#print random name from names
print(random.choice(names))

#print random integer in a range of numbers
print(random.randint(1, 100)
Gleaming Goldfinch

Python au hasard

from random import randint # Import randint from random
print(randint(1,20)) # Gets random number from first parameter to the second
Lava

Python au hasard

import random

# random number 1 to 100
x = random.randrange(0, 99)
x = x + 1
print(x)
codingiscool

Python au hasard

import random
print(random.randint(0,1))
hateschoollovecoding

Python au hasard

import random

print(random.randint(3, 9))
Different Donkey

Python au hasard

import random
language=['English','Chinese','Hindi','Arabic','Bengali','Portuguese','Russian','Turkish' ]
choices=random.choices(language,k=10)
print(choices)
sample= random.sample(language,k=5)
print(sample)
Panicky Partridge

Python au hasard

import random
from random import randint, random

cando = True

if cando == True:
    print(randint(1,100))
dl.idiot..

Python au hasard

>>> import string
>>> import random
>>> def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
...    return ''.join(random.choice(chars) for _ in range(size))
...
>>> id_generator()
'G5G74W'
>>> id_generator(3, "6793YUIO")
'Y3U'
omeatai

Réponses similaires à “Python au hasard”

Questions similaires à “Python au hasard”

Plus de réponses similaires à “Python au hasard” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code