Quizz.biz est un service gratuit financé par la publicité.
Pour nous aider et ne plus voir ce message :
Quiz Classique
Quiz High Tech

Quiz Python 4

16 joués - il y a 1 an

Quiz sur le langage informatique Python niveau moyen.

 

Difficile QUIZ 10 QUESTIONS
difficile
normal
 
Question 1 / 10

Comment importer le module 'random' en Python ?

expert
 
Question 2 / 10

Import random
print(random.random())

Que va afficher le code ci-dessus ?

normal
 
Question 3 / 10

Import random
L = [1, 2, 3, 4]
print(random.choice(L))

Que va afficher le code ci-dessus ?

Quizz.biz est un service gratuit financé par la publicité.
Pour nous aider et ne plus voir ce message :
normal
 
Question 4 / 10

Import random
print(random.randint(0, 1))

Que va afficher le code ci-dessus ?

difficile
 
Question 5 / 10

Import random
sequence = [1]
elements_choisis = random.choices(sequence, k=3)
print(elements_choisis)

Que va afficher le code ci-dessus ?

expert
 
Question 6 / 10

Liste = [1, 3, 2, 7]
a = random.choice(liste)

Que va afficher le code ci-dessus ?

expert
 
Question 7 / 10

Import random
print(randint(0, 5))

Que va afficher le code ci-dessus ?

expert
 
Question 8 / 10

Import randint
print(randint(0, 5))

Que va afficher le code ci-dessus ?

difficile
 
Question 9 / 10

Import random
print(type(random))

Que va afficher le code ci-dessus ?

expert
 
Question 10 / 10

Import random
a = random.randint(4, 6)
print(type(a))

Que va afficher le code ci-dessus ?