-4
Good afternoon,
I need to follow some rules when generating my list.
Are these:
1.Have at least one repeated value
2.Have at least 6 unique values
3.All the numbers cannot be repeated
How can I do this??
Follows the code
import numpy as np
import statistics as st
import random
def lista_random():
lista = random.sample(range(0, 50), 12)
lista.sort()
return lista
lista = lista_random()
print('A sua lista é: ', lista)
print('A média dos índices é: {:.4f} '.format(np.mean(lista)))
print('A moda é: {:.4f} '.format(st.mode(lista)))
print('A Mediana é: {:.4f} '.format(st.median(lista)))
print('A variância amostral é: {:.4f}'.format(st.pvariance(lista)))
print('O desvio padrão amostral é: {:.4f}'.format(st.stdev(lista)))
print('O coeficiente de variação é: {:.4f}'.format(st.variance(lista)))
Put an example of a real attempt to address the problem.
– Augusto Vasques