Posts by Vinicius Veroneze • 11 points
1 post
-
1
votes1
answer429
viewsA: Finding percentage in repeated numbers - Python - Statistics
# -*- coding: utf-8 -*- from collections import Counter Dados = [] Dados = raw_input('Entre com os dados, separando por espaço: ').split(' ') print(Dados) '''Calcular repeticoes, criando um…
pythonanswered Vinicius Veroneze 11