randint_list.py

Created by gengisclan

Created on August 18, 2023

659 Bytes

Renvoie une liste aléatoire d’un intervalle


from math import *
from random import randint

def randint_list(a,b):
  '''
  Preconditions : Rentrez deux entiers croissants
  Postconditions : Retourne une liste aleatoire des entiers 
  de l intervale
  '''
  assert type(a) == int,"Votre premier nombre doit etre un entier"
  assert type(b) == int,"Votre deuxieme nombre doit etre un entier" 
  assert a<b, "Rentrez deux entiers croissants"
  liste=[]
  while not len(liste)==b-a+1:  
    increment=True
    teste=randint(a,b)
    for elements in liste:
      if teste == elements:
        increment=False
        break
    if increment == True:
      liste.append(teste)
  return liste

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.